summaryrefslogtreecommitdiff
path: root/TAO/tests
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2021-06-15 17:34:39 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2021-06-15 17:34:39 -0500
commit71f7ce017d977f1c6bd226cdf05266d7dda0622c (patch)
treea29d94dd28249e42f391e62d43b748668f3abcbb /TAO/tests
parent65962eedcc372b0d4addf94edea54b810c0e53c2 (diff)
downloadATCD-71f7ce017d977f1c6bd226cdf05266d7dda0622c.tar.gz
Respond to Review of #840
https://github.com/DOCGroup/ACE_TAO/pull/840
Diffstat (limited to 'TAO/tests')
-rw-r--r--TAO/tests/IDLv4/explicit_ints/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/TAO/tests/IDLv4/explicit_ints/main.cpp b/TAO/tests/IDLv4/explicit_ints/main.cpp
index 5d1aa20081a..d7f652da17e 100644
--- a/TAO/tests/IDLv4/explicit_ints/main.cpp
+++ b/TAO/tests/IDLv4/explicit_ints/main.cpp
@@ -1,5 +1,6 @@
#include "testC.h"
+#include "ace/OS_NS_stdlib.h"
#include "ace/OS_main.h"
#include "ace/streams.h"
@@ -75,5 +76,5 @@ ACE_TMAIN (int, ACE_TCHAR *[])
expect_equals<CORBA::Int8> (any_failed, "i8_e8", i8_e8, 16);
expect_equals<CORBA::Int8> (any_failed, "i8_e9", i8_e9, 8);
- return any_failed ? 1 : 0;
+ return any_failed ? EXIT_SUCCESS : EXIT_FAILURE;
}