Files
deb-python-pysaml2/script/utility/run_list_of_tests.py
2014-07-11 11:49:08 +02:00

11 lines
199 B
Python
Executable File

#!/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)