diff --git a/v2/test/project_root_constants.py b/v2/test/project_root_constants.py index f5a8477d2..8642eb335 100644 --- a/v2/test/project_root_constants.py +++ b/v2/test/project_root_constants.py @@ -13,14 +13,14 @@ t = Tester() # Create the needed files t.write("project-root.jam", """ -constant FOO : foobar ; +constant FOO : foobar gee ; ECHO $(FOO) ; """) t.write("Jamfile", """ """) t.run_build_system() -t.fail_test(find(t.stdout(), "foobar") == -1) +t.fail_test(find(t.stdout(), "foobar gee") == -1) # Regression test: when absolute paths were passed to path-constant rule, # Boost.Build failed to recognize path as absolute and prepended current dir.