2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-02 20:52:13 +00:00
Files
build/test/relative_sources.py
Dave Abrahams 09d88e1f8e Fixes for testing
[SVN r17642]
2003-02-25 14:37:10 +00:00

15 lines
293 B
Python

#!/usr/bin/python
# Test that we can specify sources using relative names.
from BoostBuild import Tester
t = Tester()
t.write("project-root.jam", "import gcc ;")
t.write("Jamfile", "exe a : src/a.cpp ;")
t.write("src/a.cpp", "int main() { return 0; }\n")
t.run_build_system()
t.cleanup()