Skip to content

Commit c77c8e4

Browse files
authored
Don't let df failures ruin the buildomat tests (#1213)
1 parent 4cd5ce9 commit c77c8e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/buildomat/jobs/test-crudd-benchmark.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobpid=$$; (sleep $(( 2 * 60 * 60 )); ps -ef; zfs list;kill $jobpid) &
5353
echo "Setup debug logging"
5454
mkdir /tmp/debug
5555
psrinfo -v > /tmp/debug/psrinfo.txt
56-
df -h > /tmp/debug/df.txt
56+
df -h > /tmp/debug/df.txt || true
5757
prstat -d d -mLc 1 > /tmp/debug/prstat.txt 2>&1 &
5858
iostat -T d -xn 1 > /tmp/debug/iostat.txt 2>&1 &
5959
mpstat -T d 1 > /tmp/debug/mpstat.txt 2>&1 &

.github/buildomat/jobs/test-perf.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobpid=$$; (sleep $(( 40 * 60 )); ps -ef; zfs list;kill $jobpid) &
5050
echo "Setup debug logging"
5151
mkdir /tmp/debug
5252
psrinfo -v > /tmp/debug/psrinfo.txt
53-
df -h > /tmp/debug/df.txt
53+
df -h > /tmp/debug/df.txt || true
5454
prstat -d d -mLc 1 > /tmp/debug/prstat.txt 2>&1 &
5555
iostat -T d -xn 1 > /tmp/debug/iostat.txt 2>&1 &
5656
mpstat -T d 1 > /tmp/debug/mpstat.txt 2>&1 &

.github/buildomat/jobs/test-replay.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobpid=$$; (sleep 10800; ps -ef; zfs list;kill $jobpid) &
5252
echo "Setup debug logging"
5353
mkdir /tmp/debug
5454
psrinfo -v > /tmp/debug/psrinfo.txt
55-
df -h > /tmp/debug/df.txt
55+
df -h > /tmp/debug/df.txt || true
5656
prstat -d d -mLc 1 > /tmp/debug/prstat.txt 2>&1 &
5757
iostat -T d -xn 1 > /tmp/debug/iostat.txt 2>&1 &
5858
mpstat -T d 1 > /tmp/debug/mpstat.txt 2>&1 &

0 commit comments

Comments
 (0)