about summary refs log tree commit diff stats
path: root/awk/rawk/tests/test_runner.sh
diff options
context:
space:
mode:
Diffstat (limited to 'awk/rawk/tests/test_runner.sh')
-rwxr-xr-xawk/rawk/tests/test_runner.sh18
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