summaryrefslogtreecommitdiffstats
path: root/test/h5test.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-08-16 21:07:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-08-16 21:07:06 (GMT)
commit9f779228f94af8c653ade6d13f0eed95be4f9551 (patch)
tree8b56c23be9cf35a18bafc839d36038d1d91f2cec /test/h5test.h
parentd9af3b4fdf7f2a8e2ef26855482d0af251864414 (diff)
downloadhdf5-9f779228f94af8c653ade6d13f0eed95be4f9551.zip
hdf5-9f779228f94af8c653ade6d13f0eed95be4f9551.tar.gz
hdf5-9f779228f94af8c653ade6d13f0eed95be4f9551.tar.bz2
[svn-r19243] Description:
Bring r19242 from trunk to 1.8 branch: Add in override for testing timeout alarm to allow "HDF5_ALARM_SECONDS" environment variable to change the timeout value from the default value. Tested on: Mac OS X/32 10.6.4 (amazon) w/debug & production (Too minor to require h5committest)
Diffstat (limited to 'test/h5test.h')
-rw-r--r--test/h5test.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/h5test.h b/test/h5test.h
index ff065bc..3d3f72e 100644
--- a/test/h5test.h
+++ b/test/h5test.h
@@ -127,11 +127,9 @@ extern MPI_Info h5_io_info_g; /* MPI INFO object for IO */
/*
* Alarm definitions to wait up (terminate) a test that runs too long.
*/
-#define alarm_seconds 1200 /* default is 20 minutes */
-#define ALARM_ON HDalarm(alarm_seconds)
+#define H5_ALARM_SEC 1200 /* default is 20 minutes */
+#define ALARM_ON TestAlarmOn()
#define ALARM_OFF HDalarm(0)
-/* set alarms to N seconds if N > 0, else use default alarm_seconds. */
-#define ALARM_SET(N) HDalarm((N)>0 ? N : alarm_seconds)
/*
* The methods to compare the equality of floating-point values:
@@ -192,6 +190,8 @@ H5TEST_DLL void IncTestNumErrs(void);
H5TEST_DLL const void *GetTestParameters(void);
H5TEST_DLL int TestErrPrintf(const char *format, ...);
H5TEST_DLL void SetTest(const char *testname, int action);
+H5TEST_DLL void TestAlarmOn(void);
+H5TEST_DLL void TestAlarmOff(void);
#ifdef H5_HAVE_FILTER_SZIP
H5TEST_DLL int h5_szip_can_encode(void);