source: mod_gnutls/test/newtest @ 0da2c5d

asynciomainproxy-ticket
Last change on this file since 0da2c5d was 0da2c5d, checked in by Fiona Klute <fiona.klute@…>, 3 years ago

Test suite: Update README and newtest script

  • Property mode set to 100755
File size: 851 bytes
Line 
1#!/bin/bash
2
3TEST_NAME="$1"
4
5confirmed=0
6
7while [ "$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
21done
22
23cp -a tests/00_basic "tests/$newname"
24# derive script name, the actual script will be generated by make
25newscript="test-${newname}.bash"
26
27echo "You can now edit ${newname}."
28echo "Run the test with TESTS=\"${newscript}\" make -e check."
29echo "When ready, add ${newscript} to test_scripts in Makefile.am."
Note: See TracBrowser for help on using the repository browser.