[mksh] Do not run any test requiring openpty(3) until Fedora buildsystem is running mock 1.1.12 or better,

Robert Scheck robert at fedoraproject.org
Thu Jul 28 01:56:36 UTC 2011


commit b8686a6ef748c139159658b0895b7065c4bddc71
Author: Robert Scheck <robert at fedoraproject.org>
Date:   Thu Jul 28 03:56:15 2011 +0200

    Do not run any test requiring openpty(3) until Fedora buildsystem is running mock 1.1.12 or better, which should fix the current issue in 1.1.8 (#726271)

 mksh.spec |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/mksh.spec b/mksh.spec
index 7b66fee..3590b17 100644
--- a/mksh.spec
+++ b/mksh.spec
@@ -41,7 +41,10 @@ install -D -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/skel/.mkshrc
 
 %check
 echo > test.wait
-script -qc './test.sh -v; x=$?; rm -f test.wait; exit $x'
+# Do not run any test requiring openpty(3) until Fedora buildsystem is running
+# mock 1.1.12 or better, which should fix the current issue in 1.1.8 (#726271).
+# script -qc './test.sh -v; x=$?; rm -f test.wait; exit $x'
+script -qc './test.sh -v -C regress:no-ctty; x=$?; rm -f test.wait; exit $x'
 maxwait=0
 while test -e test.wait; do
   sleep 1


More information about the scm-commits mailing list