- Timestamp:
- Jul 23, 2015, 11:33:52 AM (8 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- 5d85ad3
- Parents:
- 98ab9db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/runtests
r98ab9db r56056de 7 7 set -e 8 8 9 tests="${1##t-}" 9 testid="${1##t-}" 10 11 if [ -z "$testid" ] ; then 12 echo -e "No test case selected.\nUsage: ${0} t-N" >&2 13 exit 1 14 else 15 testid=${srcdir}/tests/"$(printf "%02d" "$testid")"_* 16 fi 10 17 11 18 if [ -n "${TEST_LOCK}" ]; then … … 111 118 fi 112 119 } 113 114 if [ -z "$tests" ] ; then115 tests=${srcdir}/tests/*116 else117 tests=${srcdir}/tests/"$(printf "%02d" "$tests")"_*118 fi119 120 120 121 if [ -n "${USE_MSVA}" ]; then … … 150 151 fi 151 152 152 for t in $test s; do153 for t in $testid; do 153 154 if [ -z "${flock_cmd}" ]; then 154 155 echo "Warning: no lock file set"
Note: See TracChangeset
for help on using the changeset viewer.