asynciomainproxy-ticket
Last change
on this file since 05984a0 was
05984a0,
checked in by Fiona Klute <fiona.klute@…>, 3 years ago
|
Replace "runtests" with "runtest.py"
This is the next step from handling HTTP requests and responses in
Python. In particular error handling is a lot easier to do in Python
than using Bash trap functions.
|
-
Property mode set to
100755
|
File size:
893 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | TEST_NAME="$1" |
---|
4 | |
---|
5 | confirmed=0 |
---|
6 | |
---|
7 | while [ "$confirmed" -eq 0 ]; do |
---|
8 | |
---|
9 | if [ -z "${TEST_NAME}" ]; then |
---|
10 | read -e -p "describe your new test briefly: " -i "$tname" TEST_NAME |
---|
11 | fi |
---|
12 | |
---|
13 | tname="${TEST_NAME// /_}" |
---|
14 | newnum="$(( $(ls -d tests/* | sed 's|^[^/]*/\([0-9]*\)_.*|\1|' | sort -n | tail -n 1 | sed s/^0//) + 1))" |
---|
15 | newname="$(printf "%02d_%s" "${newnum}" "$tname")" |
---|
16 | |
---|
17 | read -p "your new test will be named tests/$newname. OK? [Y/n]" |
---|
18 | if [ "$REPLY" == "" ] || [ "${REPLY/Y/y}" == "y" ]; then |
---|
19 | confirmed=1 |
---|
20 | fi |
---|
21 | done |
---|
22 | |
---|
23 | cp -a tests/00_basic "tests/$newname" |
---|
24 | |
---|
25 | # create run script for make check |
---|
26 | newscript="test-${newname}.bash" |
---|
27 | cat - >"${newscript}" <<EOF |
---|
28 | #!/bin/bash |
---|
29 | . \${srcdir}/netns_py.bash \${srcdir}/runtest.py --test-number ${newnum} |
---|
30 | EOF |
---|
31 | chmod a+x "${newscript}" |
---|
32 | |
---|
33 | echo "You can now edit ${newname}." |
---|
34 | echo "When ready, add ${newscript} to TESTS in Makefile.am." |
---|
Note: See
TracBrowser
for help on using the repository browser.