We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e667dc commit 0accf4cCopy full SHA for 0accf4c
bin/test-driver-ff
@@ -2,7 +2,7 @@
2
# test-driver-ff from test-driver - basic testsuite driver script.
3
# modif F. Hecht UPMC.
4
5
-scriptversion=2013-06-27.18; # UTC
+scriptversion=2025-02-21.16; # UTC
6
7
# Copyright (C) 2011-2013 Free Software Foundation, Inc.
8
#
@@ -125,10 +125,12 @@ estatus=$?
125
echo "status " $estatus >>$log_file
126
FAIL_CPU_LIMIT=`tail -100 $log_file|egrep -i 'Cputime limit exceeded|MPIEXEC_TIMEOUT|APPLICATION TIMED OUT|Timeout after'|wc -l`
127
fi
128
-
+# Catch ulimit timeout on Linux
129
+if [ $estatus -eq 137 ]; then
130
+ FAIL_CPU_LIMIT=2
131
+fi
132
## Add an error suffix in order to extract errored tests only
-if [ $estatus -ne 0 ] && [ $estatus -ne 77 ]
-then
133
+if [ $estatus -ne 0 ] && [ $estatus -ne 77 ]; then
134
cp $log_file "${log_file}.err"
135
136
0 commit comments