llvm-for-llvmta/test/Reduce/Inputs/remove-metadata.py

9 lines
120 B
Python
Raw Normal View History

2022-04-25 10:02:23 +02:00
import sys
input = open(sys.argv[1], "r")
for line in input:
if "!interesting" in line:
sys.exit(0)
sys.exit(1)