From 9c5787e8bd6e19e35a4dd38497a631fc80f05151 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 21 May 2014 13:32:20 +0100 Subject: [PATCH] Disable tests on 32 bit (https://bugzilla.redhat.com/show_bug.cgi?id=1099892) --- supermin.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/supermin.spec b/supermin.spec index b76ef4b..81dd0ef 100644 --- a/supermin.spec +++ b/supermin.spec @@ -1,7 +1,7 @@ Summary: Tool for creating supermin appliances Name: supermin Version: 5.1.8 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ %if 0%{?rhel} >= 7 @@ -77,10 +77,14 @@ export SKIP_TEST_EXECSTACK=1 %endif %endif +# Disable tests on 32 bit because mke2fs is broken: +# https://bugzilla.redhat.com/show_bug.cgi?id=1099892 +%ifarch x86_64 make check || { cat tests/test-suite.log exit 1 } +%endif %files @@ -90,8 +94,9 @@ make check || { %changelog -* Wed May 21 2014 Richard W.M. Jones - 5.1.8-5 +* Wed May 21 2014 Richard W.M. Jones - 5.1.8-6 - Add patch to fix RPM handler when filenames may contain spaces. +- Disable tests on 32 bit (https://bugzilla.redhat.com/show_bug.cgi?id=1099892) * Mon May 19 2014 Richard W.M. Jones - 5.1.8-4 - Skip execstack test on Fedora 20 (ARM only).