diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2009-12-16 21:17:04 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2009-12-16 21:17:04 (GMT) |
commit | df2fef9759940bf5d80e8aa5a8dcd1251d58d490 (patch) | |
tree | b3b1d18b30248c0a2589d0da2656702c4b59ccb5 | |
parent | a428323f90b1d68b8f0dbac3b1b09a75050f0809 (diff) | |
download | hdf5-df2fef9759940bf5d80e8aa5a8dcd1251d58d490.zip hdf5-df2fef9759940bf5d80e8aa5a8dcd1251d58d490.tar.gz hdf5-df2fef9759940bf5d80e8aa5a8dcd1251d58d490.tar.bz2 |
[svn-r18028] On Boeing's OpenVMS, the value of EXIT_FAILURE is 268435458.
(The test is in test_exit_definitions.) Their document says
it's supposed to be 2. I commented it out for further
consideration.
Tested 1.8 branch on jam - simple change.
-rw-r--r-- | test/tconfig.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/tconfig.c b/test/tconfig.c index 47eed64..6b8fd84 100644 --- a/test/tconfig.c +++ b/test/tconfig.c @@ -61,7 +61,12 @@ void test_exit_definitions(void); * September 25, 2001 * * Modifications: - * + * Raymond Lu + * 16 Dec 2009 + * On Boeing's OpenVMS, the value of EXIT_FAILURE is 268435458. + * (The test is in test_exit_definitions.) Their document says + * it's supposed to be 2. I commented it out for OpenVMS for + * further consideration. *------------------------------------------------------------------------- */ void @@ -70,7 +75,9 @@ test_configure(void) /* Output message about test being performed */ MESSAGE(5, ("Testing configure definitions\n")); test_config_ctypes(); +#ifndef H5_VMS test_exit_definitions(); +#endif } |