We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05c8232 commit e29824dCopy full SHA for e29824d
test/lit.cfg
@@ -1391,11 +1391,17 @@ elif run_os == 'wasi':
1391
# Exclude test cases that use objc-interop because clang doesn't support it
1392
# with WebAssembly binary file yet.
1393
def use_objc_interop(path):
1394
- with open(path) as f:
1395
- return '-enable-objc-interop' in f.read()
+ try:
+ with open(path) as f:
1396
+ return '-enable-objc-interop' in f.read()
1397
+ except:
1398
+ return False
1399
def lldb_related_test(path):
- return 'lldb-moduleimport-test' in f.read()
1400
1401
1402
+ return 'lldb-moduleimport-test' in f.read()
1403
1404
1405
1406
def disabled_filenames(path):
1407
matches = []
0 commit comments