diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-23 09:59:52 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-23 09:59:52 +0200 |
commit | 3c57a25a4d6a80301ece82ab33f1394e34f8b873 (patch) | |
tree | 2ff64ebcfab74f90e81fdd2963fb653630d6d17b /build/cxx | |
parent | 34e5a2da18f76c7d7de79a5c12b0e85ee89c4095 (diff) |
Basic test support
Diffstat (limited to 'build/cxx')
-rw-r--r-- | build/cxx/compile.cxx | 2 | ||||
-rw-r--r-- | build/cxx/link.cxx | 2 | ||||
-rw-r--r-- | build/cxx/module.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/build/cxx/compile.cxx b/build/cxx/compile.cxx index d0e6526..a12650f 100644 --- a/build/cxx/compile.cxx +++ b/build/cxx/compile.cxx @@ -459,7 +459,7 @@ namespace build try { - process pr (args.data (), false, false, true); + process pr (args.data (), 0, -1); // Open pipe to stdout. ifdstream is (pr.in_ofd); size_t skip (skip_count); diff --git a/build/cxx/link.cxx b/build/cxx/link.cxx index b35a596..145a085 100644 --- a/build/cxx/link.cxx +++ b/build/cxx/link.cxx @@ -127,7 +127,7 @@ namespace build string l; try { - process pr (args.data (), false, false, true); + process pr (args.data (), 0, -1); // Open pipe to stdout. ifdstream is (pr.in_ofd); while (!is.eof ()) diff --git a/build/cxx/module.cxx b/build/cxx/module.cxx index 3975ac5..882d4b0 100644 --- a/build/cxx/module.cxx +++ b/build/cxx/module.cxx @@ -110,7 +110,7 @@ namespace build string ver; try { - process pr (args, false, false, true); + process pr (args, 0, -1); // Open pipe to stdout. ifdstream is (pr.in_ofd); bool r (getline (is, ver)); |