36b7ab18a3
- Fixed gtk plugin program-name (#640671, gtk-progname patch) - Fixed broken links in doc index (#642536, doc-index-fix patch) - Fixed SIGSEGVs on testsuite (#645703, testsuite-sigsegv-fix patch) - Testsuite now do diff check also in case of err output (#645703, rtest-errout-fix patch) - Testsuite enabled on all arches (#645703) - Added urw-fonts to BuildRequires - Compiled with -fno-strict-aliasing - Fixed rpmlint warnings on spec file - Removed unused patches
23 lines
553 B
Diff
23 lines
553 B
Diff
--- graphviz-2.26.0/rtest/rtest.sh.old 2009-12-06 00:27:49.000000000 +0100
|
|
+++ graphviz-2.26.0/rtest/rtest.sh 2010-10-22 10:37:42.952893435 +0200
|
|
@@ -279,14 +279,16 @@
|
|
$testcmd 2> errout
|
|
RVAL=$?
|
|
|
|
+ if [[ -s errout ]]
|
|
+ then
|
|
+ cat errout
|
|
+ fi
|
|
+
|
|
if [[ $RVAL != 0 || ! -s $OUTPATH ]]
|
|
then
|
|
(( CRASH_CNT+=1 ))
|
|
print -u 2 "Test $TESTNAME:$i : == Layout failed =="
|
|
print -u 2 " $testcmd"
|
|
- elif [[ -s errout ]]
|
|
- then
|
|
- cat errout
|
|
elif [[ $GENERATE == 1 ]]
|
|
then
|
|
continue
|