Commit Diff


commit - 32fbc47803fbb51cfff0e5181b78d9050641709c
commit + a5fb2593a9ab1c6cc4ae027924724dd2714f7fe1
blob - 26b79ac644931537aabdcaba60270b4ba5f869ae
blob + e8da9076303121b1c1a093426b5c2a0ee0e7178c
--- regress/lib.sh
+++ regress/lib.sh
@@ -2,6 +2,7 @@ ran_no=0
 failed_no=0
 failed=
 
+ge="./../ge"
 gg="./../gg"
 gmid="./../gmid"
 current_test=
blob - 29abf6809238a903d90730416404c6f77b7bbafa
blob + 4059b45d713feb1dc6be5e626a5a9048f1cd70c9
--- regress/regress
+++ 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
blob - 22d2598379a8c2a5cd15c5c9f375911a8ef561bb
blob + a46e44dc4fb7f79385e4b1110ec728454e36a8b1
--- regress/tests.sh
+++ 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