diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-03-19 08:29:07 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-03-20 07:12:30 +0100 |
commit | d7f1c5cfebd95ace9a62a5f1b7a8208827df0fb6 (patch) | |
tree | 1b0e2259abfbf7c25262fefa94fe15938eff9917 | |
parent | ceb8044c602d14096b9e49907eea060b25edb934 (diff) |
OpenVMS tests fixed
This patch takes into account that IPC transport is not supported
on OpenVMS platform.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
-rw-r--r-- | tests/pair_ipc.cpp | 2 | ||||
-rw-r--r-- | tests/reqrep_ipc.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/pair_ipc.cpp b/tests/pair_ipc.cpp index 46cdf76..43915cc 100644 --- a/tests/pair_ipc.cpp +++ b/tests/pair_ipc.cpp @@ -20,7 +20,7 @@ #include "testutil.hpp" -#if defined XS_HAVE_WINDOWS +#if defined XS_HAVE_WINDOWS || defined XS_HAVE_OPENVMS int XS_TEST_MAIN () { return 0; diff --git a/tests/reqrep_ipc.cpp b/tests/reqrep_ipc.cpp index 7325cbb..9be50fb 100644 --- a/tests/reqrep_ipc.cpp +++ b/tests/reqrep_ipc.cpp @@ -20,7 +20,7 @@ #include "testutil.hpp" -#if defined XS_HAVE_WINDOWS +#if defined XS_HAVE_WINDOWS || defined XS_HAVE_OPENVMS int XS_TEST_MAIN () { return 0; |