Skip to content

Commit d738a64

Browse files
committed
[cxx-interop] Do not run SIL/verify_all_overlays.py on std
rdar://93420692
1 parent ed17a85 commit d738a64

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

validation-test/SIL/verify_all_overlays.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
# Skip the standard library because it's tested elsewhere.
2424
if module_name == "Swift":
2525
continue
26+
# Skip the C++ standard library overlay because it's not yet shipped
27+
# in any released SDK.
28+
if module_name == "std":
29+
continue
2630
# TODO(TF-1229): Fix the "_Differentiation" module.
2731
if module_name == "_Differentiation":
2832
continue

0 commit comments

Comments
 (0)