diff options
author | Steve Huston <shuston@riverace.com> | 1997-08-04 18:12:58 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1997-08-04 18:12:58 +0000 |
commit | f237fb7c9a8e8addd757772aa066141341cbadb2 (patch) | |
tree | 3c9c5eb8a0d3156583a01281ebeb7e4ba3e2690e /tests/Enum_Interfaces_Test.cpp | |
parent | bce3926e2a1a039f828c9a4cbc9cb81136ed45a8 (diff) | |
download | ATCD-f237fb7c9a8e8addd757772aa066141341cbadb2.tar.gz |
Return non-zero on error return from get_ip_interfaces so that the run_tests
script notices the error.
Diffstat (limited to 'tests/Enum_Interfaces_Test.cpp')
-rw-r--r-- | tests/Enum_Interfaces_Test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Enum_Interfaces_Test.cpp b/tests/Enum_Interfaces_Test.cpp index 7818c7f4d85..dd0f3c65dd1 100644 --- a/tests/Enum_Interfaces_Test.cpp +++ b/tests/Enum_Interfaces_Test.cpp @@ -59,6 +59,6 @@ main (int, char *[]) } ACE_END_TEST; - return 0; + return rc != 0; // return 1 if get_ip_interfaces failed } |