Skip to content

Commit db3d021

Browse files
Merge pull request #58944 from apple/egorzhdan/cxx-verify-all-overlays
[cxx-interop] Do not run `SIL/verify_all_overlays.py` on `std`
2 parents 7483deb + d738a64 commit db3d021

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)