File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 2
2
# test-driver-ff from test-driver - basic testsuite driver script.
3
3
# modif F. Hecht UPMC.
4
4
5
- scriptversion=2013-06-27.18 ; # UTC
5
+ scriptversion=2025-02-21.16 ; # UTC
6
6
7
7
# Copyright (C) 2011-2013 Free Software Foundation, Inc.
8
8
#
@@ -125,10 +125,12 @@ estatus=$?
125
125
echo " status " $estatus >> $log_file
126
126
FAIL_CPU_LIMIT=` tail -100 $log_file | egrep -i ' Cputime limit exceeded|MPIEXEC_TIMEOUT|APPLICATION TIMED OUT|Timeout after' | wc -l`
127
127
fi
128
-
128
+ # Catch ulimit timeout on Linux
129
+ if [ $estatus -eq 137 ]; then
130
+ FAIL_CPU_LIMIT=2
131
+ fi
129
132
# # Add an error suffix in order to extract errored tests only
130
- if [ $estatus -ne 0 ] && [ $estatus -ne 77 ]
131
- then
133
+ if [ $estatus -ne 0 ] && [ $estatus -ne 77 ]; then
132
134
cp $log_file " ${log_file} .err"
133
135
fi
134
136
You can’t perform that action at this time.
0 commit comments