30 lines
997 B
Bash
Executable File
30 lines
997 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Quick script to check Phase 5 test progress
|
|
|
|
LOG_FILE="phase5_test_results.log"
|
|
|
|
if [ ! -f "$LOG_FILE" ]; then
|
|
echo "Test log not found. Tests may not have started yet."
|
|
exit 1
|
|
fi
|
|
|
|
total_tests=10
|
|
completed=$(tail -n +2 "$LOG_FILE" | wc -l)
|
|
successful=$(grep -c "✅" "$LOG_FILE" 2>/dev/null || echo "0")
|
|
failed=$(grep -c "❌" "$LOG_FILE" 2>/dev/null || echo "0")
|
|
|
|
echo "══════════════════════════════════════════════════════════════"
|
|
echo "Phase 5 Test Progress"
|
|
echo "══════════════════════════════════════════════════════════════"
|
|
echo ""
|
|
echo "Completed: $completed / $total_tests"
|
|
echo "Successful: $successful"
|
|
echo "Failed: $failed"
|
|
echo ""
|
|
echo "Recent results:"
|
|
echo ""
|
|
tail -5 "$LOG_FILE" | column -t -s'|'
|
|
echo ""
|
|
|