diff options
author | Rob Austein <sra@hactrn.net> | 2014-01-08 21:24:58 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-01-08 21:24:58 +0000 |
commit | d8b2a27bc5a052743d14b8e8efe67b989a95e4df (patch) | |
tree | 3419a4f8aa85447bb9ab11d54fac1872816ab53e /rpkid/tests/Makefile.in | |
parent | 563cfd2d975e8ea7b6e018b66d9c6a0dd20f79ae (diff) |
getopt -> argparse, update copyright.
svn path=/trunk/; revision=5621
Diffstat (limited to 'rpkid/tests/Makefile.in')
-rw-r--r-- | rpkid/tests/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/rpkid/tests/Makefile.in b/rpkid/tests/Makefile.in index 9ba859ce..b63e8dc3 100644 --- a/rpkid/tests/Makefile.in +++ b/rpkid/tests/Makefile.in @@ -28,29 +28,29 @@ parse-test: protocol-samples all-tests:: parse-test all-tests:: - ${PYTHON} smoketest.py -y smoketest.1.yaml + ${PYTHON} smoketest.py smoketest.1.yaml all-tests:: - ${PYTHON} smoketest.py -y smoketest.2.yaml + ${PYTHON} smoketest.py smoketest.2.yaml test all-tests:: - ${PYTHON} smoketest.py -y smoketest.3.yaml + ${PYTHON} smoketest.py smoketest.3.yaml all-tests:: - ${PYTHON} smoketest.py -y smoketest.4.yaml + ${PYTHON} smoketest.py smoketest.4.yaml all-tests:: - ${PYTHON} smoketest.py -y smoketest.5.yaml + ${PYTHON} smoketest.py smoketest.5.yaml test all-tests:: - ${PYTHON} smoketest.py -y smoketest.6.yaml + ${PYTHON} smoketest.py smoketest.6.yaml all-tests:: - ${PYTHON} smoketest.py -y smoketest.7.yaml + ${PYTHON} smoketest.py smoketest.7.yaml profile: all find smoketest.dir -name '*.prof' -delete - ${PYTHON} smoketest.py -y smoketest.2.yaml -p + ${PYTHON} smoketest.py smoketest.2.yaml -p for i in smoketest.dir/*.prof; do ${PYTHON} -c "import pstats;pstats.Stats('$$i').sort_stats('time').print_stats()"; done # This isn't a full exercise of the yamltest framework, but is |