Skip to content

Commit 884bd6e

Browse files
committed
[embedded] Adjust verify_all_overlays.py to avoid checking Cxx and CxxStdlib
1 parent 3cacb36 commit 884bd6e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

validation-test/ParseableInterface/verify_all_overlays.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@
5050
]:
5151
continue
5252

53+
# Cxx and CxxStdlib are built without library evolution and don't have a
54+
# .swiftinterface file
55+
if module_name in ["Cxx", "CxxStdlib"]:
56+
if not os.path.exists(interface_file):
57+
continue
58+
5359
# swift -build-module-from-parseable-interface
5460
output_path = os.path.join(output_dir, module_name + ".swiftmodule")
5561
compiler_args = ["-o", output_path, "-module-name", module_name,

0 commit comments

Comments
 (0)