Skip to content

Commit 13f53f7

Browse files
committed
Run tests update
1 parent c9fc84c commit 13f53f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

runtests.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ set -e
77
usage() {
88
echo "Usage: $0 [option]"
99
echo "Options:"
10-
echo " all Run all tests"
10+
echo " all Run all tests (default)"
1111
echo " mutation Run only mutation tests"
1212
echo " parsing Run only parsing tests"
1313
exit 1
1414
}
1515

16-
# Check if an argument is provided
16+
# Default to "all" if no argument is provided
1717
if [ $# -eq 0 ]; then
18-
usage
18+
set -- "all"
1919
fi
2020

2121
# Handle the provided option

0 commit comments

Comments
 (0)