aboutsummaryrefslogtreecommitdiff
path: root/util/run_tests
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2023-09-23 23:37:22 +0000
committersotech117 <michael_foiani@brown.edu>2023-09-23 23:37:22 +0000
commit759b0550996b251d1bf4ae64a6a6f5c2059d2479 (patch)
tree03534b77f9cfc7e78b0c477e9b2e9f7de5bf99a3 /util/run_tests
parent5e3925610f1e9a1351c2b22cfa10b08385015b31 (diff)
parentc2348702491e5ea65e64b1ab7d2f51c5bad1562b (diff)
try some stuff, no avail
Diffstat (limited to 'util/run_tests')
-rwxr-xr-xutil/run_tests8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/run_tests b/util/run_tests
index 4dbdf4b..64bbb1e 100755
--- a/util/run_tests
+++ b/util/run_tests
@@ -94,18 +94,18 @@ do_server() {
}
do_control() {
- check_exists "${bin_dir}/snowcast_server"
- run_tester server_tester $@
+ check_exists "${bin_dir}/snowcast_control"
+ run_tester control_tester $@
}
do_milestone() {
- do_control -test.run="Test.+?/Test(ConnectsToServer|AcceptsClientConnection|CompletesHandshake)"
+ do_control -test.v -test.run="Test.+?/Test(ConnectsToServer|AcceptsClientConnection|CompletesHandshake)" || true
do_server -test.v -test.run="Test.+?/Test(ConnectsToServer|AcceptsClientConnection|CompletesHandshake)"
}
do_all() {
- do_server $@
+ do_server $@ || true
do_control $@
}