summaryrefslogtreecommitdiff
path: root/script/utility/run_list_of_tests.py
blob: e0242d49a1ee904a78e0d16ccb60ce1f58e7d001 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

import fileinput
from subprocess import call

for line in fileinput.input():
    cmd = "./run_oper.sh " + line.rstrip()
    print("executing " + cmd)
    call(cmd, shell=True)