summaryrefslogtreecommitdiffstats
path: root/test/tconfig.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2009-12-16 21:12:51 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2009-12-16 21:12:51 (GMT)
commit0db6255d805b625f3fbbbb0b0893032af229d234 (patch)
tree672bc78824e5a675fe06290ca3deb9849b99377d /test/tconfig.c
parentf03234031fad8eb84d354b76ec6264d6d275257b (diff)
downloadhdf5-0db6255d805b625f3fbbbb0b0893032af229d234.zip
hdf5-0db6255d805b625f3fbbbb0b0893032af229d234.tar.gz
hdf5-0db6255d805b625f3fbbbb0b0893032af229d234.tar.bz2
[svn-r18026] 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 on jam - simple change.
Diffstat (limited to 'test/tconfig.c')
-rw-r--r--test/tconfig.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/tconfig.c b/test/tconfig.c
index 47eed64..189b7ba 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 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
}