[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.
This commit is contained in:
Raymond Lu
2009-12-16 16:12:51 -05:00
parent f03234031f
commit 0db6255d80

View File

@@ -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
}