]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/test/absolute_sources.py
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / test / absolute_sources.py
index 64cd770e1f97360dcf7daa491f74d3b32bbcc6a6..22ff1d080958a1992d99294e78745b7d59dc593a 100644 (file)
@@ -20,7 +20,7 @@ t.write("hello.cpp", "int main() {}\n")
 t.write("empty.cpp", "\n")
 
 t.run_build_system()
-t.expect_addition("bin/$toolset/debug/hello.exe")
+t.expect_addition("bin/$toolset/debug*/hello.exe")
 t.rm(".")
 
 # Test a contrived case in which an absolute name is used in a standalone
@@ -53,7 +53,7 @@ alias('a', [os.path.join(pwd, 'a.cpp')])
 """)
 
 t.run_build_system()
-t.expect_addition("bin/$toolset/debug/a.exe")
+t.expect_addition("bin/$toolset/debug*/a.exe")
 
 # Test absolute path in target ids.
 t.rm(".")
@@ -68,6 +68,6 @@ alias x : $(pwd)/../d1//a ;
 """)
 
 t.run_build_system(subdir="d2")
-t.expect_addition("d1/bin/$toolset/debug/a.exe")
+t.expect_addition("d1/bin/$toolset/debug*/a.exe")
 
 t.cleanup()