diff --git a/regress/lib.sh b/regress/lib.sh index 26b79ac..e8da907 100644 --- a/regress/lib.sh +++ b/regress/lib.sh @@ -2,6 +2,7 @@ ran_no=0 failed_no=0 failed= +ge="./../ge" gg="./../gg" gmid="./../gmid" current_test= diff --git a/regress/regress b/regress/regress index 29abf68..4059b45 100755 --- a/regress/regress +++ b/regress/regress @@ -30,8 +30,10 @@ if [ "${SKIP_RUNTIME_TESTS:-0}" -eq 1 ]; then tests_done fi +# Run regression tests for the ge binary. +run_test test_ge + # Run regression tests for the gmid binary. -run_test test_configless_mode run_test test_static_files run_test test_directory_redirect run_test test_serve_big_files diff --git a/regress/tests.sh b/regress/tests.sh index 22d2598..a46e44d 100644 --- a/regress/tests.sh +++ b/regress/tests.sh @@ -8,10 +8,10 @@ test_iri() { ./iri_test } -test_configless_mode() { +test_ge() { dont_check_server_alive=yes - $gmid -p $port -H localhost -d . testdata & + $ge -p $port -d . testdata & pid=$! sleep 1