mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-18 13:16:24 -04:00
5fbb26ea5f
Patch by Diego Treviño! Differential Revision: https://reviews.llvm.org/D65026 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371562 91177308-0d34-0410-b5e6-96231b3b80d8
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)
|