diff options
Diffstat (limited to 'regress')
-rwxr-xr-x | regress/regress | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/regress/regress b/regress/regress index 6474e4f..a88a269 100755 --- a/regress/regress +++ b/regress/regress @@ -1,14 +1,5 @@ #!/bin/sh -if [ "${SKIP_RUNTIME_TESTS:-0}" -eq 1 ]; then - echo - echo "======================" - echo "runtime tests skipped!" - echo "======================" - echo - exit 0 -fi - rm -f gmid.pid . ./lib.sh @@ -25,8 +16,21 @@ if [ $# -ne 0 ]; then tests_done fi +# Run standalone unit tests. run_test test_punycode run_test test_iri + +if [ "${SKIP_RUNTIME_TESTS:-0}" -eq 1 ]; then + echo + echo "======================" + echo "runtime tests skipped!" + echo "======================" + echo + + tests_done +fi + +# Run regression tests for the gmid binary. run_test test_configless_mode run_test test_static_files run_test test_directory_redirect |