mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
4e25fb2d4f
Patch by Diego Treviño! Differential Revision: https://reviews.llvm.org/D65026 llvm-svn: 371562
9 lines
120 B
Python
Executable File
9 lines
120 B
Python
Executable File
import sys
|
|
|
|
input = open(sys.argv[1], "r")
|
|
for line in input:
|
|
if "!interesting" in line:
|
|
sys.exit(0)
|
|
|
|
sys.exit(1)
|