Changeset dcaba46 in mod_gnutls
- Timestamp:
- Nov 19, 2018, 2:37:26 AM (4 years ago)
- Branches:
- asyncio, debian/master, main, master, proxy-ticket
- Children:
- 0020874
- Parents:
- 0bed0a0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/newtest
r0bed0a0 rdcaba46 7 7 while [ "$confirmed" -eq 0 ]; do 8 8 9 read -e -p "describe your new test briefly: " -i "$tname" TEST_NAME 9 if [ -z "${TEST_NAME}" ]; then 10 read -e -p "describe your new test briefly: " -i "$tname" TEST_NAME 11 fi 10 12 11 13 tname="${TEST_NAME// /_}" … … 13 15 newname="$(printf "%02d_%s" "${newnum}" "$tname")" 14 16 15 read -p "your new test will be named tests/$newname. OK [Y/n]?"17 read -p "your new test will be named tests/$newname. OK? [Y/n]" 16 18 if [ "$REPLY" == "" ] || [ "${REPLY/Y/y}" == "y" ]; then 17 19 confirmed=1 … … 24 26 newscript="test-${newname}.bash" 25 27 echo '#!/bin/bash' >"${newscript}" 26 echo " make -f TestMakefilet-${newnum}" >>"${newscript}"28 echo "\${srcdir}/runtests t-${newnum}" >>"${newscript}" 27 29 chmod a+x "${newscript}" 28 30
Note: See TracChangeset
for help on using the changeset viewer.