File size: 671 Bytes
3f6526a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# Cleanup test results and restart fresh

set -e

echo "=================================="
echo "🧹 Cleanup"
echo "=================================="
echo ""
echo "This will remove:"
echo "  - /tmp/quick_test_eval_service/"
echo "  - /tmp/test_integration_*/"
echo ""

read -p "Continue? (y/N) " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
    echo "Cancelled"
    exit 1
fi

# Cleanup temporary test directories
echo "🧹 Removing test directories..."
rm -rf /tmp/quick_test_eval_service
rm -rf /tmp/test_integration_*
echo "✅ Cleanup complete"
echo ""
echo "Note: Full experiment results in examples/circle_packing/results/ are preserved"
echo ""