mirror of
https://github.com/boostorg/build.git
synced 2026-02-01 20:32:17 +00:00
* build/targets.jam (project-target.find): Better error reporting. * build/project.jam (load-jamfile): Use 'path.native' when loading Jamfile, otherwise, target id with absolute directory name won't work for Windows. [SVN r26271]
74 lines
1.4 KiB
Python
74 lines
1.4 KiB
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")
|
|
|
|
# Test a contrived case. There, absolute name is used in
|
|
# standalone project (not Jamfile). Moreover, the target with
|
|
# absolute name is returned by 'alias' and used from other project.
|
|
t.write("a.cpp", """
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
""")
|
|
|
|
t.write("Jamfile", """
|
|
exe a : /standalone//a ;
|
|
""")
|
|
|
|
t.write("project-root.jam", """
|
|
import standalone ;
|
|
""")
|
|
|
|
t.write("standalone.jam", """
|
|
import project ;
|
|
|
|
project.initialize $(__name__) ;
|
|
project standalone ;
|
|
|
|
local pwd = [ PWD ] ;
|
|
|
|
alias a : $(pwd)/a.cpp ;
|
|
|
|
""")
|
|
t.run_build_system()
|
|
t.expect_addition("bin/$toolset/debug/a.exe")
|
|
|
|
# Test absolute path in target ids
|
|
t.rm(".")
|
|
t.write("d1/project-root.jam", "")
|
|
t.write("d1/Jamfile", """
|
|
exe a : a.cpp ;
|
|
""")
|
|
t.write("d1/a.cpp", """
|
|
int main() { return 0; }
|
|
""")
|
|
t.write("d2/project-root.jam", "")
|
|
t.write("d2/Jamfile", """
|
|
local pwd = [ PWD ] ;
|
|
alias x : $(pwd)/../d1//a ;
|
|
""")
|
|
|
|
t.run_build_system(subdir="d2")
|
|
t.expect_addition("d1/bin/$toolset/debug/a.exe")
|
|
|
|
t.cleanup()
|