mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00

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)
|