diff options
Diffstat (limited to 'awk/rawk/tests/test_runner.sh')
-rwxr-xr-x | awk/rawk/tests/test_runner.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/awk/rawk/tests/test_runner.sh b/awk/rawk/tests/test_runner.sh index 18f3fa2..d0b316d 100755 --- a/awk/rawk/tests/test_runner.sh +++ b/awk/rawk/tests/test_runner.sh @@ -1,6 +1,6 @@ #!/bin/bash -echo "๐งช Fixed rawk v2.0.0 Test Runner" +echo "a rawking test runner" echo "==================================" # Colors for output @@ -64,37 +64,37 @@ run_error_test() { # Run all tests echo "" -echo "๐ Running basic functionality tests..." +echo "Running basic functionality tests..." run_test "test_basic.rawk" "Basic Functionality" echo "" -echo "๐ Running simple standard library tests..." +echo "Running simple standard library tests..." run_test "simple_stdlib_test.rawk" "Simple Standard Library" echo "" -echo "๐ง Running full standard library tests..." +echo "Running full standard library tests..." run_test "test_stdlib.rawk" "Full Standard Library" echo "" -echo "๐ง Running functional programming tests..." +echo "Running functional programming tests..." run_test "test_functional.rawk" "Functional Programming" echo "" -echo "โ Running error handling tests..." +echo "Running error handling tests..." run_error_test "test_errors.rawk" "Error Handling" # Summary echo "" echo "==================================" -echo "๐ Test Summary:" +echo "Test Summary:" echo " Total tests: $TOTAL" echo -e " ${GREEN}Passed: $PASSED${NC}" echo -e " ${RED}Failed: $FAILED${NC}" if [ $FAILED -eq 0 ]; then - echo -e "\n${GREEN}๐ All tests passed!${NC}" + echo -e "\n${GREEN}All tests passed!${NC}" exit 0 else - echo -e "\n${RED}๐ฅ Some tests failed!${NC}" + echo -e "\n${RED}Some tests failed!${NC}" exit 1 fi \ No newline at end of file |