summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/dependency_property.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/test/dependency_property.py')
-rw-r--r--tools/build/v2/test/dependency_property.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/tools/build/v2/test/dependency_property.py b/tools/build/v2/test/dependency_property.py
new file mode 100644
index 0000000000..2f19ba3f8d
--- /dev/null
+++ b/tools/build/v2/test/dependency_property.py
@@ -0,0 +1,36 @@
+#!/usr/bin/python
+
+# Copyright 2003 Vladimir Prus
+# 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)
+
+# Regression test: virtual targets with different dependency properties were
+# considered different by 'virtual-target.register', but the code which
+# determined target paths ignored dependency properties --- so both targets used
+# to be placed to the same location.
+
+import BoostBuild
+import string
+
+
+t = BoostBuild.Tester()
+
+t.write("jamroot.jam", """
+lib foo : foo.cpp ;
+exe hello : hello.cpp ;
+exe hello2 : hello.cpp : <library>foo ;
+""")
+
+t.write("hello.cpp", "int main() {}\n")
+
+t.write("foo.cpp", """
+#ifdef _WIN32
+__declspec(dllexport)
+#endif
+void foo() {}
+""")
+
+t.run_build_system("--no-error-backtrace", status=1)
+t.fail_test(string.find(t.stdout(), "Duplicate name of actual target") == -1)
+
+t.cleanup()