Merge pull request #115 from hfmanson/master
[tlspool] / test / run_seq.py
1 #!/usr/bin/env python
2 #
3 # Run a program sequentially, that is, print "--\n" after it is done.
4 # This program can be useful together with Pypeline, to run "normal"
5 # commands.
6 #
7 # From: Rick van Rein <rick@openfortress.nl>
8
9
10 import sys
11 import subprocess
12
13
14 retcode = subprocess.call (sys.argv [1:])
15
16 print ('--')
17
18 sys.exit (retcode)