- Workaround failure caused by RHBZ#575734.

- Workaround unknown failure of test_swapon_label_0.
This commit is contained in:
Richard W.M. Jones 2010-03-30 14:35:21 +00:00
parent 8e935ffee9
commit 9b475f97bb

View File

@ -42,7 +42,7 @@ Summary: Access and modify virtual machine disk images
Name: libguestfs Name: libguestfs
Epoch: 1 Epoch: 1
Version: 1.0.88 Version: 1.0.88
Release: 6%{?dist} Release: 7%{?dist}
License: LGPLv2+ License: LGPLv2+
Group: Development/Libraries Group: Development/Libraries
URL: http://libguestfs.org/ URL: http://libguestfs.org/
@ -459,6 +459,8 @@ export LIBGUESTFS_DEBUG=1
# 563103 all F-13 glibc incorrect emulation of preadv/pwritev # 563103 all F-13 glibc incorrect emulation of preadv/pwritev
# (WORKAROUND using LD_PRELOAD) # (WORKAROUND using LD_PRELOAD)
# 567567 32-bit all guestfish xstrtol test failure on 32-bit (FIXED) # 567567 32-bit all guestfish xstrtol test failure on 32-bit (FIXED)
# 575734 all F-14 microsecond resolution for blkid cache
# (FIXED upstream but still broken in F-14)
# Workaround #563103 # Workaround #563103
cat > rhbz563103.c <<'EOF' cat > rhbz563103.c <<'EOF'
@ -475,6 +477,13 @@ gcc -shared -Wl,-soname,rhbz563103.so.1 rhbz563103.o -o rhbz563103.so
LD_PRELOAD=$(pwd)/rhbz563103.so LD_PRELOAD=$(pwd)/rhbz563103.so
export LD_PRELOAD export LD_PRELOAD
# Workaround #575734 in F-14
export SKIP_TEST_MKE2JOURNAL_U=1
export SKIP_TEST_MKE2JOURNAL_L=1
# Unknown why this fails - could be also #575734.
export SKIP_TEST_SWAPON_LABEL=1
%if %{runtests} %if %{runtests}
make check make check
%endif %endif
@ -684,8 +693,10 @@ rm -rf $RPM_BUILD_ROOT
%changelog %changelog
* Tue Mar 30 2010 Richard W.M. Jones <rjones@redhat.com> - 1:1.0.88-6 * Tue Mar 30 2010 Richard W.M. Jones <rjones@redhat.com> - 1:1.0.88-7
- Backport of TERM=dumb patch from upstream. - Backport of TERM=dumb patch from upstream.
- Workaround failure caused by RHBZ#575734.
- Workaround unknown failure of test_swapon_label_0.
* Tue Mar 30 2010 Richard W.M. Jones <rjones@redhat.com> - 1:1.0.88-5 * Tue Mar 30 2010 Richard W.M. Jones <rjones@redhat.com> - 1:1.0.88-5
- Attempted workaround for RHBZ#563103, so we can reenable tests. - Attempted workaround for RHBZ#563103, so we can reenable tests.