Skip to content

Commit c09dbe1

Browse files
committed
Add monitor loop to enable visiblity into long running test.
Signed-off-by: Keith Rothman <[email protected]>
1 parent 827bdde commit c09dbe1

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/kokoro/steps/vtr-test.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,18 @@ echo $PWD
2424
pwd
2525
pwd -L
2626
pwd -P
27+
28+
(
29+
while :
30+
do
31+
date
32+
uptime
33+
free -h
34+
sleep 300
35+
done
36+
) &
37+
MONITOR=$!
38+
2739
export VPR_NUM_WORKERS=1
2840
./run_reg_test.pl $VTR_TEST -show_failures -j$NUM_CORES
41+
kill $MONITOR

0 commit comments

Comments
 (0)