Files
clang-p2996/llvm/test/tools/llvm-reduce/Inputs/remove-instructions.py
Samuel 0bc5436ae8 [llvm-reduce] Move tests to tools folder
Move tests for llvm-reduce to tools folder

Reviewed By: fhahn, lebedev.ri

Differential Revision: https://reviews.llvm.org/D99632
2021-04-01 10:04:10 -07:00

18 lines
316 B
Python
Executable File

import sys
InterestingInstructions = 0
input = open(sys.argv[1], "r")
for line in input:
i = line.find(';')
if i >= 0:
line = line[:i]
if "%interesting" in line:
InterestingInstructions += 1
print(InterestingInstructions)
if InterestingInstructions == 5:
sys.exit(0) # interesting!
sys.exit(1)