WSJT-X/tools/build/test/cli_property_expansion.py
Bill Somerville 4ebe6417a5 Squashed 'boost/' content from commit b4feb19f2
git-subtree-dir: boost
git-subtree-split: b4feb19f287ee92d87a9624b5d36b7cf46aeadeb
2018-06-09 21:48:32 +01:00

42 lines
800 B
Python

#!/usr/bin/python
# Copyright 2015 Aaron Boman
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
# Test that free property inside.
import BoostBuild
t = BoostBuild.Tester(use_test_config=False)
t.write("jamroot.jam", "")
t.write(
"subdir/build.jam",
"""
import feature ;
feature.feature my-feature : : free ;
"""
)
t.write(
"subdir/subsubdir/build.jam",
"""
exe hello : hello.c ;
"""
)
t.write(
"subdir/subsubdir/hello.c",
r"""
#include <stdio.h>
int main(int argc, char **argv){
printf("%s\n", "Hello, World!");
}
"""
)
# run from the root directory
t.run_build_system(['subdir/subsubdir', 'my-feature="some value"'])
t.cleanup()