Skip to content

Commit bdef75f

Browse files
author
Julian Lettner
committedJan 8, 2022
[Darwin][Sanitizer] Lower Python requirement for iOS simulator testing
Lower Python requirements: 3.7 -> 3.6 Workaround introduced in: ebd8eee
1 parent 244dd29 commit bdef75f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎compiler-rt/test/sanitizer_common/ios_commands/iossim_run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
os.environ["SIMCTL_CHILD_" + e] = os.environ[e]
2424

2525
find_atos_cmd = 'xcrun -sdk iphonesimulator -f atos'
26-
atos_path = subprocess.run(find_atos_cmd.split(), capture_output=True, check=True).stdout.decode().strip()
26+
atos_path = subprocess.run(find_atos_cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE, check=True).stdout.decode().strip()
2727
for san in ['ASAN', 'TSAN', 'UBSAN', 'LSAN']:
2828
os.environ[f'SIMCTL_CHILD_{san}_SYMBOLIZER_PATH'] = atos_path
2929

0 commit comments

Comments
 (0)
Please sign in to comment.