diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-08-16 21:04:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-08-16 21:04:53 (GMT) |
commit | 771a850c58b88ffd4f8519573f175dcd0b90a65f (patch) | |
tree | 3828774686400fa56b7232b0b8149992f930a441 /test/testframe.c | |
parent | 54d5a565f95f83655d8bcccb017da6164860afa7 (diff) | |
download | hdf5-771a850c58b88ffd4f8519573f175dcd0b90a65f.zip hdf5-771a850c58b88ffd4f8519573f175dcd0b90a65f.tar.gz hdf5-771a850c58b88ffd4f8519573f175dcd0b90a65f.tar.bz2 |
[svn-r19242] Description:
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/testframe.c')
-rw-r--r-- | test/testframe.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/testframe.c b/test/testframe.c index 201f569..082a27f 100644 --- a/test/testframe.c +++ b/test/testframe.c @@ -588,3 +588,21 @@ void SetTest(const char *testname, int action) break; } } + + +/* + * Enable alarm on test execution, configurable by environment variable + */ +void TestAlarmOn(void) +{ + char * env_val = HDgetenv("HDF5_ALARM_SECONDS"); /* Alarm environment */ + unsigned long alarm_sec = H5_ALARM_SEC; /* Number of seconds before alarm goes off */ + + /* Get the alarm value from the environment variable, if set */ + if(env_val != NULL) + alarm_sec = (unsigned)HDstrtoul(env_val, (char **)NULL, 10); + + /* Set the number of seconds before alarm goes off */ + HDalarm((unsigned)alarm_sec); +} + |