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)

This commit is contained in:
Robert Scheck 2011-07-28 03:56:15 +02:00
parent ac05c84d20
commit b8686a6ef7

View File

@ -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