From ab28d7f1e5ab9b51f5708741bd13f92e768123d4 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 7 Dec 2016 16:57:42 +0000 Subject: [PATCH] tests: skip fault injection tests on unsupported platforms * tests/fault_injection.sh: New file. * tests/Makefile.am (EXTRA_DIST): Add it. * tests/fault_injection-exit_group.test: Use it. * tests/fault_injection.test: Likewise. --- tests/Makefile.am | 1 + tests/fault_injection-exit_group.test | 2 +- tests/fault_injection.sh | 46 +++++++++++++++++++++++++++ tests/fault_injection.test | 2 +- 4 files changed, 49 insertions(+), 2 deletions(-) create mode 100755 tests/fault_injection.sh diff --git a/tests/Makefile.am b/tests/Makefile.am index 19dc9356..90851a46 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -851,6 +851,7 @@ EXTRA_DIST = init.sh run.sh match.awk \ eventfd.expected \ fadvise.h \ fault_injection-exit_group.expected \ + fault_injection.sh \ filter-unavailable.expected \ fstatat.c \ fstatx.c \ diff --git a/tests/fault_injection-exit_group.test b/tests/fault_injection-exit_group.test index fa224d51..25de5b78 100755 --- a/tests/fault_injection-exit_group.test +++ b/tests/fault_injection-exit_group.test @@ -27,7 +27,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -. "${srcdir=.}/init.sh" +. "${srcdir=.}/fault_injection.sh" test_with() { diff --git a/tests/fault_injection.sh b/tests/fault_injection.sh new file mode 100755 index 00000000..010c1c20 --- /dev/null +++ b/tests/fault_injection.sh @@ -0,0 +1,46 @@ +#!/bin/sh +# +# Skip the test if arch+kernel combination is not supported. +# +# Copyright (c) 2016 Dmitry V. Levin +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. The name of the author may not be used to endorse or promote products +# derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +. "${srcdir=.}/init.sh" + +uname_r="$(uname -r)" +case "$STRACE_ARCH" in + arm) + # PTRACE_SET_SYSCALL is supported by linux kernel + # starting with commit v2.6.16-rc1~107^2. + require_min_kernel_version_or_skip 2.6.16 ;; + aarch64) + # NT_ARM_SYSTEM_CALL regset is supported by linux kernel + # starting with commit v3.19-rc1~59^2~16. + require_min_kernel_version_or_skip 3.19 ;; + sparc*) + # Reloading the syscall number from %g1 register is supported + # by linux kernel starting with commit v4.5-rc7~35^2~3. + require_min_kernel_version_or_skip 4.5 ;; +esac diff --git a/tests/fault_injection.test b/tests/fault_injection.test index 69bdd3c6..1f562d0c 100755 --- a/tests/fault_injection.test +++ b/tests/fault_injection.test @@ -27,7 +27,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -. "${srcdir=.}/init.sh" +. "${srcdir=.}/fault_injection.sh" # # F -- 2.50.1