File: run_list_of_tests.py

package info (click to toggle)
python-pysaml2 3.0.0-3~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 27,408 kB
  • sloc: xml: 228,756; python: 62,698; makefile: 168; sh: 104
file content (10 lines) | stat: -rwxr-xr-x 200 bytes parent folder | download | duplicates (5)
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)