]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/test/relative_sources.py
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / test / relative_sources.py
index f36e0b097f78c1f88307b987ce320176fee85f4b..29f590fedb313a591238560820875a6a03086a79 100644 (file)
@@ -16,14 +16,14 @@ t.write("jamroot.jam", "exe a : src/a.cpp ;")
 t.write("src/a.cpp", "int main() {}\n")
 
 t.run_build_system()
-t.expect_addition("bin/$toolset/debug/src/a.obj")
+t.expect_addition("bin/$toolset/debug*/src/a.obj")
 
 # Test that the relative path to source is preserved
 # when using 'glob'.
 t.rm("bin")
 t.write("jamroot.jam", "exe a : [ glob src/*.cpp ] ;")
 t.run_build_system()
-t.expect_addition("bin/$toolset/debug/src/a.obj")
+t.expect_addition("bin/$toolset/debug*/src/a.obj")
 
 
 # Test that relative path with ".." is *not* added to
@@ -33,6 +33,6 @@ t.write("jamroot.jam", "")
 t.write("a.cpp", "int main() { return 0; }\n")
 t.write("build/Jamfile", "exe a : ../a.cpp ; ")
 t.run_build_system(subdir="build")
-t.expect_addition("build/bin/$toolset/debug/a.obj")
+t.expect_addition("build/bin/$toolset/debug*/a.obj")
 
 t.cleanup()