Move tests for llvm-reduce to tools folder Reviewed By: fhahn, lebedev.ri Differential Revision: https://reviews.llvm.org/D99632
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)
|