From 7d3fa6fc32c1922d621a7a87ab81c0dc08679b10 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Sun, 16 Mar 2014 23:46:43 +0100 Subject: [PATCH] tests: skip more Fedora kernels for raid456 --- test/lib/aux.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/lib/aux.sh b/test/lib/aux.sh index bd292bb58..12e8e0461 100644 --- a/test/lib/aux.sh +++ b/test/lib/aux.sh @@ -681,8 +681,9 @@ raid456_replace_works() { # so we need to put here exlusion for kernes which do trace SLUB # case $(uname -r) in - 3.10.11-200.fc19.i686|3.10.11-200.fc19.x86_64) return 1 ;; - 3.13.5-101.fc19.i686.PAE|3.13.6-200.fc20.x86_64) return 1 ;; + 3.1[0123].*.fc18.i686*|3.1[0123].*.fc18.x86_64) return 1 ;; + 3.1[0123].*.fc19.i686*|3.1[0123].*.fc19.x86_64) return 1 ;; + 3.13.*.fc20.i686*|3.13.*.fc20.x86_64) return 1 ;; esac }