mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
9 lines
120 B
Python
9 lines
120 B
Python
|
import sys
|
||
|
|
||
|
input = open(sys.argv[1], "r")
|
||
|
for line in input:
|
||
|
if "!interesting" in line:
|
||
|
sys.exit(0)
|
||
|
|
||
|
sys.exit(1)
|