diff options
author | Niels de Vos <ndevos@redhat.com> | 2017-07-17 11:40:33 +0200 |
---|---|---|
committer | Raghavendra Talur <rtalur@redhat.com> | 2017-07-18 11:13:34 +0000 |
commit | d26f0bac149d495fa93710c3f7b6b63c36cb8387 (patch) | |
tree | d6824f2076e878e7b249186636b6d62688001ab8 /tests/features | |
parent | 2e72b24707f1886833db0b09e48b3f48b8d68d37 (diff) |
tests: disable IPC test-case
The IPC test-case is not correct, and can cause segfaults or hangs. The
ipctest.py script calls glfs_ipc() with the `glfs_t` structure, but
should do so with a `glfs_fd_t`.
In addition, the test-case is written in a way that we do not suggest to
use libgfapi. Python scripts are encouraged to use the bindings from the
libgfapi-python project. It would be better to rewrite the test in C so
that there is type-checking while compiling and no additional issues
with portability (see `LD_PRELOAD` note in the `.t` file).
Change-Id: Icb52b5b1585fbee98f2c694547c31df0aa2ba70b
Updates: #269
Signed-off-by: Niels de Vos <ndevos@redhat.com>
Reviewed-on: https://review.gluster.org/17786
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Jeff Darcy <jeff@pl.atyp.us>
Reviewed-by: Raghavendra Talur <rtalur@redhat.com>
Diffstat (limited to 'tests/features')
-rwxr-xr-x | tests/features/ipc.t | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/features/ipc.t b/tests/features/ipc.t index 55ce8c871c1..5c92287eaa1 100755 --- a/tests/features/ipc.t +++ b/tests/features/ipc.t @@ -2,6 +2,9 @@ . $(dirname $0)/../include.rc +#G_TESTDEF_TEST_STATUS_CENTOS6=BAD_TEST,BUG=GH269 +#G_TESTDEF_TEST_STATUS_NETBSD7=BAD_TEST,BUG=GH269 + cleanup; mkdir -p $B0/1 mkdir -p $M0 |