diff options
author | Emmanuel Dreyfus <manu@netbsd.org> | 2014-10-31 09:26:28 +0100 |
---|---|---|
committer | Niels de Vos <ndevos@redhat.com> | 2014-10-31 03:50:05 -0700 |
commit | 756949556b3ceb2279f09962ab5789960de86bd3 (patch) | |
tree | 32474c99e9a9e06e7f132d77434c3b3705e763e7 /tests/basic | |
parent | a718a11a1c21c1f74460b61c98579db4ae2747ac (diff) |
Regression test portability: mock
After some attempts at using mock on NetBSD which pulled a lot of
dependencies, it seems that software really assumes the OS is
Linux: chrooted build will fail because of missing Linux files.
As a result, make tests/basic/rpm.t Linux-only, and remove mock
and rpmbuild checks for non Linux systems.
BUG: 1129939
Change-Id: Ica2eb74dd23fbec379a26051a8f61b0dfc07a115
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.org/8949
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Diffstat (limited to 'tests/basic')
-rwxr-xr-x | tests/basic/rpm.t | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/basic/rpm.t b/tests/basic/rpm.t index db90398a152..bbe3f464477 100755 --- a/tests/basic/rpm.t +++ b/tests/basic/rpm.t @@ -16,6 +16,16 @@ . $(dirname $0)/../include.rc +case $OSTYPE in +Linux) + ;; +*) + echo "Skip test using mock, which requires Linux" >&2 + SKIP_TESTS + exit 0 + ;; +esac + # enable some extra debugging if [ -n "${DEBUG}" -a "${DEBUG}" != "0" ] then |