diff options
Diffstat (limited to '')
8 files changed, 94 insertions, 0 deletions
diff --git a/src/boost/tools/build/test/rootless.py b/src/boost/tools/build/test/rootless.py new file mode 100644 index 000000000..3dc2de5bc --- /dev/null +++ b/src/boost/tools/build/test/rootless.py @@ -0,0 +1,36 @@ +#!/usr/bin/python + +# Copyright 2018 Rene Rivera +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +import BoostBuild +import os + +t = BoostBuild.Tester(translate_suffixes=0) + +t.set_tree("rootless/test1") +t.run_build_system(status=1) +t.expect_output_lines("error: no Jamfile in current directory*") + +t.set_tree("rootless/test1") +t.run_build_system(subdir="sub_root") +t.expect_addition("sub_root/bin/a.txt") + +t.set_tree("rootless/test1") +t.run_build_system(subdir="sub_root", extra_args=["--build-dir=../bin"]) +t.expect_output_lines("warning: the --build-dir option will be ignored") + +t.set_tree("rootless/test2") +t.run_build_system(subdir="sub_root", extra_args=["--build-dir=../bin"]) +t.expect_addition("bin/foo/a.txt") + +t.set_tree("rootless/test3") +t.run_build_system() + +t.set_tree("rootless/test3") +t.run_build_system(subdir="sub/inner") +t.expect_addition("bins/sub/inner/a.txt") + +t.cleanup() diff --git a/src/boost/tools/build/test/rootless/test1/sub_root/a.cpp b/src/boost/tools/build/test/rootless/test1/sub_root/a.cpp new file mode 100644 index 000000000..412a2bb4f --- /dev/null +++ b/src/boost/tools/build/test/rootless/test1/sub_root/a.cpp @@ -0,0 +1,6 @@ +// Copyright 2018 Rene Rivera +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +int main() {} diff --git a/src/boost/tools/build/test/rootless/test1/sub_root/jamfile.jam b/src/boost/tools/build/test/rootless/test1/sub_root/jamfile.jam new file mode 100644 index 000000000..0a17bc400 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test1/sub_root/jamfile.jam @@ -0,0 +1,10 @@ +# Copyright 2018 Rene Rivera +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +actions foo +{ + echo "$(>)" > "$(<)" +} +make a.txt : a.cpp : @foo ; diff --git a/src/boost/tools/build/test/rootless/test2/sub_root/a.cpp b/src/boost/tools/build/test/rootless/test2/sub_root/a.cpp new file mode 100644 index 000000000..412a2bb4f --- /dev/null +++ b/src/boost/tools/build/test/rootless/test2/sub_root/a.cpp @@ -0,0 +1,6 @@ +// Copyright 2018 Rene Rivera +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +int main() {} diff --git a/src/boost/tools/build/test/rootless/test2/sub_root/jamfile.jam b/src/boost/tools/build/test/rootless/test2/sub_root/jamfile.jam new file mode 100644 index 000000000..62416c0b7 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test2/sub_root/jamfile.jam @@ -0,0 +1,13 @@ +# Copyright 2018 Rene Rivera +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +project foo ; + +actions foo +{ + echo "$(>)" > "$(<)" +} + +make a.txt : a.cpp : @foo ; diff --git a/src/boost/tools/build/test/rootless/test3/jamfile.jam b/src/boost/tools/build/test/rootless/test3/jamfile.jam new file mode 100644 index 000000000..ab8da6a06 --- /dev/null +++ b/src/boost/tools/build/test/rootless/test3/jamfile.jam @@ -0,0 +1,6 @@ +# Copyright 2018 Rene Rivera +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +project root-foo : build-dir bins ; diff --git a/src/boost/tools/build/test/rootless/test3/sub/inner/a.cpp b/src/boost/tools/build/test/rootless/test3/sub/inner/a.cpp new file mode 100644 index 000000000..412a2bb4f --- /dev/null +++ b/src/boost/tools/build/test/rootless/test3/sub/inner/a.cpp @@ -0,0 +1,6 @@ +// Copyright 2018 Rene Rivera +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +int main() {} diff --git a/src/boost/tools/build/test/rootless/test3/sub/inner/jamfile.jam b/src/boost/tools/build/test/rootless/test3/sub/inner/jamfile.jam new file mode 100644 index 000000000..6aeddab3b --- /dev/null +++ b/src/boost/tools/build/test/rootless/test3/sub/inner/jamfile.jam @@ -0,0 +1,11 @@ +# Copyright 2018 Rene Rivera +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +actions foo +{ + echo "$(>)" > "$(<)" +} + +make a.txt : a.cpp : @foo ; |