forked from OSchip/llvm-project
[Sanitizer] Adopt Python 3 for iOS simulator test scripts
Differential Revision: https://reviews.llvm.org/D99911
This commit is contained in:
parent
93c87fc06e
commit
a3e1b11123
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os, sys, subprocess
|
||||
|
||||
|
@ -20,7 +20,7 @@ while args:
|
|||
output = args.pop(0)
|
||||
|
||||
if output == None:
|
||||
print "No output file name!"
|
||||
print("No output file name!")
|
||||
sys.exit(1)
|
||||
|
||||
ret = subprocess.call(sys.argv[1:])
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os, sys, subprocess
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import json
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import glob, os, pipes, sys, subprocess
|
||||
|
||||
|
|
Loading…
Reference in New Issue