diff options
author | Julio Merino <jmmv@FreeBSD.org> | 2014-02-14 14:41:25 +0000 |
---|---|---|
committer | Julio Merino <jmmv@FreeBSD.org> | 2014-02-14 14:41:25 +0000 |
commit | 8fee91db34c6746951ced9a348b36c5b758d576e (patch) | |
tree | a986bed64ee725de3eb52c5f0838f6c59b8aa7d9 /atf-c++/check_test.cpp | |
parent | bf351e294647b19b2abb7e59344e619866206e71 (diff) |
Notes
Diffstat (limited to 'atf-c++/check_test.cpp')
-rw-r--r-- | atf-c++/check_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/atf-c++/check_test.cpp b/atf-c++/check_test.cpp index 8e5983fdc637..a92511c2f209 100644 --- a/atf-c++/check_test.cpp +++ b/atf-c++/check_test.cpp @@ -61,7 +61,7 @@ std::auto_ptr< atf::check::check_result > do_exec(const atf::tests::tc* tc, const char* helper_name) { std::vector< std::string > argv; - argv.push_back(get_process_helpers_path(*tc).str()); + argv.push_back(get_process_helpers_path(*tc, false).str()); argv.push_back(helper_name); std::cout << "Executing " << argv[0] << " " << argv[1] << "\n"; @@ -74,7 +74,7 @@ std::auto_ptr< atf::check::check_result > do_exec(const atf::tests::tc* tc, const char* helper_name, const char *carg2) { std::vector< std::string > argv; - argv.push_back(get_process_helpers_path(*tc).str()); + argv.push_back(get_process_helpers_path(*tc, false).str()); argv.push_back(helper_name); argv.push_back(carg2); std::cout << "Executing " << argv[0] << " " << argv[1] << " " |