From e0d3afbd97bb1feedde7ba450e6376955e5f8e46 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 12 Apr 2005 14:06:45 +0000 Subject: [PATCH] Test multi-token project constants. [SVN r28179] --- v2/test/project_root_constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.