diff options
author | Remi Collet <fedora@famillecollet.com> | 2013-01-28 14:13:43 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2013-01-28 14:13:43 +0100 |
commit | 0a240bec26b2408e8e5cea98367ba5a86ddc62bd (patch) | |
tree | 3a2cb8de071264deca287969a484de5a6d95c236 | |
parent | afa180c0bc15ca580d028d7e1cf19afb98a293c3 (diff) |
php-5.5.0-0.13.201301281030 + don't display XFAIL tests in report
-rw-r--r-- | php55.spec | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -61,14 +61,14 @@ %global db_devel libdb-devel %endif -%global snapdate 201301230630 +%global snapdate 201301281030 #global rcver RC1 Summary: PHP scripting language for creating dynamic web sites Name: php Version: 5.5.0 %if 0%{?snapdate:1}%{?rcver:1} -Release: 0.12.%{?snapdate}%{?rcver}%{?dist} +Release: 0.13.%{?snapdate}%{?rcver}%{?dist} %else Release: 2%{?dist} %endif @@ -1199,10 +1199,13 @@ export SKIP_ONLINE_TESTS=1 unset TZ LANG LC_ALL if ! make test; then set +x - for f in `find .. -name \*.diff -type f -print`; do - echo "TEST FAILURE: $f --" - cat "$f" - echo "-- $f result ends." + for f in $(find .. -name \*.diff -type f -print); do + if ! grep -q XFAIL "${f/.diff/.phpt}" + then + echo "TEST FAILURE: $f --" + cat "$f" + echo -e "\n-- $f result ends." + fi done set -x #exit 1 @@ -1640,6 +1643,10 @@ fi %changelog +* Mon Jan 28 2013 Remi Collet <remi@fedoraproject.org> 5.5.0-0.13-201301281030 +- new snapshot +- don't display XFAIL tests in report + * Wed Jan 23 2013 Remi Collet <remi@fedoraproject.org> 5.5.0-0.12-201301230630 - new snapshot, alpha4 |