Skip to content

Commit fed9334

Browse files
committed
tweaked script
1 parent d8cae96 commit fed9334

7 files changed

+207518
-3
lines changed

Scripts/.testloop.sh.swp

12 KB
Binary file not shown.

Scripts/testloop.sh

100644100755
+8-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
#!/bin/bash
22

3+
# This script runs the tests in a loop until they all pass.
4+
# It will exit if any test run fails.
5+
6+
dotnet build -c Debug
7+
38
iterationCount=1
49

510
while true; do
611
echo "Starting iteration $iterationCount..."
7-
12+
813
dotnet test --no-build --diag:log.txt
914

1015
if [ $? -ne 0 ]; then
@@ -14,7 +19,7 @@ while true; do
1419

1520
# Clean up the log files
1621
rm log*
17-
22+
1823
# Increment the iteration counter
1924
((iterationCount++))
20-
done
25+
done

log.bak.txt

+15,497
Large diffs are not rendered by default.

log.host.25-03-02_11-26-21_53865_5.txt

+69,601
Large diffs are not rendered by default.

log.host.25-03-02_13-23-52_68322_5.txt

+35,689
Large diffs are not rendered by default.

log.host.25-03-02_13-26-33_36406_5.txt

+64,379
Large diffs are not rendered by default.

log.txt

+22,344
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)