mirror of
https://github.com/boostorg/build.git
synced 2026-02-11 11:42:14 +00:00
* new/virtual-target.jam (from-file): Pass target name via "path.make". (abstract-file-target.actual-name): Pass target name via "path.native". * test/absolute_sources.py: New test. [SVN r18324]
23 lines
462 B
Python
23 lines
462 B
Python
#!/usr/bin/python
|
|
|
|
# Test that sources with absolute names are handled OK.
|
|
|
|
from BoostBuild import Tester
|
|
t = Tester()
|
|
|
|
t.write("project-root.jam", """
|
|
path-constant TOP : . ;
|
|
""")
|
|
t.write("Jamfile", """
|
|
local pwd = [ PWD ] ;
|
|
ECHO $(pwd) XXXXX ;
|
|
exe hello : $(pwd)/hello.cpp $(TOP)/empty.cpp ;
|
|
""")
|
|
t.write("hello.cpp", "int main() { return 0; }\n")
|
|
t.write("empty.cpp", "\n")
|
|
|
|
t.run_build_system()
|
|
t.expect_addition("bin/$toolset/debug/hello.exe")
|
|
|
|
t.cleanup()
|