summaryrefslogtreecommitdiffstats
path: root/test/tcheck_version.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2009-11-04 22:08:49 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2009-11-04 22:08:49 (GMT)
commita81d1b40351c85129b2202bf504e4daed59813d8 (patch)
treeaf326b38ce9308ebb0ccf86e9e6535a80b25eaf5 /test/tcheck_version.c
parent9e170a0be0d65da756516734ab1db780871cf9f7 (diff)
downloadhdf5-a81d1b40351c85129b2202bf504e4daed59813d8.zip
hdf5-a81d1b40351c85129b2202bf504e4daed59813d8.tar.gz
hdf5-a81d1b40351c85129b2202bf504e4daed59813d8.tar.bz2
[svn-r17832] Bug fix:(sort of)
Some systems, like AIX poe, interpret exit(134) the same as if the process has really been interrupted by the abort signal and prints extra messages that confuse test script which is looking for matching output. Solution: Changed it to exit(6) which still has the "appearance" of an abort signal which carries the value of 6 in Unix systems. Tested: LLNL Up both serial and Parallel.
Diffstat (limited to 'test/tcheck_version.c')
-rw-r--r--test/tcheck_version.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/tcheck_version.c b/test/tcheck_version.c
index d8894b3..91d98ef 100644
--- a/test/tcheck_version.c
+++ b/test/tcheck_version.c
@@ -96,7 +96,10 @@ parse(int ac, char **av)
}
/* Handler for SIGABRT - catch the abort signal supposedly from check_version()
- * and exit(134). 134 would have been the return code in Unix systems.
+ * and exit(6). Would have used 134 is the return code in Unix systems
+ * but some systems (e.g., poe in AIX interprets exit(134) the same as
+ * if the process has really been interrupted by the abort signal and prints
+ * extra messages that confuse test script that is looking for matching output.
* This handles the abort signal instead letting it interrupt the OS because
* some systems may produce extra messages and/or produce core dump.
* This tries to eliminate those side effects.
@@ -104,7 +107,7 @@ parse(int ac, char **av)
void
abort_intercept (int UNUSED sig)
{
- HDexit(134);
+ HDexit(6);
}
int