]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/test/build_file.py
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / test / build_file.py
index d670af4284d6db73bfb50fa2ae0fd7a1f6d4b7ae..1ae8609175eac37262924adafeca9747df3d0491 100644 (file)
@@ -37,7 +37,7 @@ exe sub : hello.cpp ;
 
     t.run_build_system(["sub", t.adjust_suffix("hello.obj")])
     t.expect_output_lines("*depends on itself*", False)
-    t.expect_addition("sub/bin/$toolset/debug/hello.obj")
+    t.expect_addition("sub/bin/$toolset/debug*/hello.obj")
     t.expect_nothing_more()
 
     t.cleanup()
@@ -63,7 +63,7 @@ exe hello3 : hello3.cpp ;
     t.write("hello3.cpp", "int main() {}\n")
 
     t.run_build_system(["hello1", t.adjust_suffix("hello1.obj")])
-    t.expect_addition("bin/$toolset/debug/hello1.obj")
+    t.expect_addition("bin/$toolset/debug*/hello1.obj")
     t.expect_nothing_more()
 
     t.cleanup()
@@ -117,8 +117,8 @@ exe hello3 : hello3.cpp ;
 
     t.run_build_system([t.adjust_suffix("hello1.obj"), t.adjust_suffix(
         "hello2.obj")])
-    t.expect_addition("bin/$toolset/debug/hello1.obj")
-    t.expect_addition("bin/$toolset/debug/hello2.obj")
+    t.expect_addition("bin/$toolset/debug*/hello1.obj")
+    t.expect_addition("bin/$toolset/debug*/hello2.obj")
     t.expect_nothing_more()
 
     t.cleanup()
@@ -149,8 +149,8 @@ exe sub : hello.cpp ;
 
     t.run_build_system([t.adjust_suffix("hello.obj")])
     t.expect_output_lines("*depends on itself*", False)
-    t.expect_addition("bin/$toolset/debug/hello.obj")
-    t.expect_addition("sub/bin/$toolset/debug/hello.obj")
+    t.expect_addition("bin/$toolset/debug*/hello.obj")
+    t.expect_addition("sub/bin/$toolset/debug*/hello.obj")
     t.expect_nothing_more()
 
     t.cleanup()