diff options
author | Nicholas DeMarinis <ndemarinis@wpi.edu> | 2023-09-12 10:59:04 -0400 |
---|---|---|
committer | Nicholas DeMarinis <ndemarinis@wpi.edu> | 2023-09-12 10:59:04 -0400 |
commit | 0406ad88d420daec090eb164fba29efcd87e2ee9 (patch) | |
tree | 34f620d06e5c0bde5721a1160195648f3bfd5957 | |
parent | 8a046d646df05549bbe878be27b23386cbbc2362 (diff) |
Updated test help.
-rwxr-xr-x | util/run_tests | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/util/run_tests b/util/run_tests index 22f1d54..4dbdf4b 100755 --- a/util/run_tests +++ b/util/run_tests @@ -24,7 +24,28 @@ __check_platform() } do_help() { - echo "$0 --bin-dir . server" + cat <<EOF +Usage $0: [options] [command] [tester args] + +This command runs tester programs for each component +of Snowcast. + +Top-level options: + --quiet Don't print the output of each test + --fail-fast Stop after the first test failure + --arm Force using binaries for arm64 platform + +Commands: + all Run all tests + server Run tests for snowcast_server + control Run tests for snowcast_control + milestone Run tests for the project milestone + +Tester args: + -help Display usage info for tester + +If no command is specified, the default is 'all'. +EOF } check_exists() { |