2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-12 12:02:24 +00:00
Files
build/test/default_build.py
Vladimir Prus e60af004d1 Add more tests.
[SVN r15851]
2002-10-10 12:12:06 +00:00

17 lines
367 B
Python

#!/usr/bin/python
# Test that default build clause actually has any effect.
from BoostBuild import Tester
t = Tester()
t.write("project-root.jam", "import gcc ;")
t.write("Jamfile", "exe a : a.cpp : : debug release ;")
t.write("a.cpp", "int main() {}")
t.run_build_system()
t.expect_addition("bin/gcc/debug/a")
t.expect_addition("bin/gcc/release/a")
t.cleanup()