2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00

Test multi-token project constants.

[SVN r28179]
This commit is contained in:
Vladimir Prus
2005-04-12 14:06:45 +00:00
parent 2e96a5594b
commit e0d3afbd97

View File

@@ -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.