mirror of
https://github.com/boostorg/build.git
synced 2026-02-01 20:32:17 +00:00
93 lines
2.0 KiB
Python
93 lines
2.0 KiB
Python
#!/usr/bin/python
|
|
|
|
# Copyright (C) Vladimir Prus 2003. Permission to copy, use, modify, sell and
|
|
# distribute this software is granted provided this copyright notice appears in
|
|
# all copies. This software is provided "as is" without express or implied
|
|
# warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
# This file is template for Boost.Build tests. It creates a simple
|
|
# project that builds one exe from one source, and checks that the exe
|
|
# is really created.
|
|
from BoostBuild import Tester, List
|
|
|
|
|
|
t = Tester()
|
|
|
|
t.write("a.cpp", """
|
|
#ifdef CF_IS_OFF
|
|
int main() { return 0; }
|
|
#endif
|
|
|
|
""")
|
|
|
|
t.write("b.cpp", """
|
|
#ifdef CF_1
|
|
int main() { return 0; }
|
|
#endif
|
|
|
|
""")
|
|
|
|
t.write("c.cpp", """
|
|
#ifdef FOO
|
|
int main() { return 0; }
|
|
#endif
|
|
|
|
""")
|
|
|
|
|
|
t.write("Jamfile", """
|
|
# See if default value of composite feature 'cf'
|
|
# will be expanded to <define>CF_IS_OFF
|
|
exe a : a.cpp ;
|
|
|
|
# See if subfeature in requirements in expanded.
|
|
exe b : b.cpp : <cf>on-1 ;
|
|
|
|
# See if conditional requirements are recursively expanded.
|
|
exe c : c.cpp : <toolset>$toolset:<variant>release <variant>release:<define>FOO ;
|
|
""")
|
|
|
|
t.write("project-root.jam", """
|
|
import feature ;
|
|
|
|
feature.feature cf : off on : composite incidental ;
|
|
|
|
feature.compose <cf>off : <define>CF_IS_OFF ;
|
|
|
|
feature.subfeature cf on : version : 1 2 : composite optional incidental ;
|
|
|
|
feature.compose <cf-on:version>1 : <define>CF_1 ;
|
|
|
|
""")
|
|
|
|
t.expand_toolset("Jamfile")
|
|
|
|
t.run_build_system()
|
|
t.expect_addition(["bin/$toolset/debug/a.exe",
|
|
"bin/$toolset/debug/b.exe",
|
|
"bin/$toolset/release/c.exe",
|
|
])
|
|
|
|
t.rm("bin")
|
|
|
|
# Test for issue BB60
|
|
t.write("test.cpp", """
|
|
#include "header.h"
|
|
int main() { return 0; }
|
|
""")
|
|
t.write("Jamfile", """
|
|
project
|
|
: requirements <toolset>$toolset:<include>foo
|
|
;
|
|
exe test : test.cpp : <toolset>$toolset ;
|
|
""")
|
|
t.expand_toolset("Jamfile")
|
|
t.write("foo/header.h", """
|
|
""")
|
|
t.write("project-root.jam", "")
|
|
t.run_build_system()
|
|
t.expect_addition("bin/$toolset/debug/test.exe")
|
|
|
|
t.cleanup()
|
|
|