[Pkg-owncloud-commits] [php-sabredav] 01/02: Skip failing tests starting with PHP 5.5.10

David Prévot taffit at moszumanska.debian.org
Sun Apr 13 20:59:56 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch 1.7
in repository php-sabredav.

commit cebb19a21757844f6046b30f73cb3c1bf56be891
Author: David Prévot <taffit at debian.org>
Date:   Sun Apr 13 16:10:19 2014 -0400

    Skip failing tests starting with PHP 5.5.10
    
    Workaround FTBFS #743111.
    
    Git-Dch: Full
---
 ...ip-failing-tests-starting-with-PHP-5.5.10.patch | 36 ++++++++++++++++++++++
 debian/patches/series                              |  1 +
 2 files changed, 37 insertions(+)

diff --git a/debian/patches/0002-Skip-failing-tests-starting-with-PHP-5.5.10.patch b/debian/patches/0002-Skip-failing-tests-starting-with-PHP-5.5.10.patch
new file mode 100644
index 0000000..2382ee1
--- /dev/null
+++ b/debian/patches/0002-Skip-failing-tests-starting-with-PHP-5.5.10.patch
@@ -0,0 +1,36 @@
+From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit at debian.org>
+Date: Sun, 13 Apr 2014 16:07:48 -0400
+Subject: Skip failing tests starting with PHP 5.5.10
+
+Bug-Debian: https://bugs.debian.org/743111
+Bug: https://github.com/fruux/sabre-dav/issues/425
+---
+ tests/Sabre/CalDAV/CalendarQueryParserTest.php | 8 ++++++++
+ 1 file changed, 8 insertions(+)
+
+diff --git a/tests/Sabre/CalDAV/CalendarQueryParserTest.php b/tests/Sabre/CalDAV/CalendarQueryParserTest.php
+index fa37346..bce9cc9 100644
+--- a/tests/Sabre/CalDAV/CalendarQueryParserTest.php
++++ b/tests/Sabre/CalDAV/CalendarQueryParserTest.php
+@@ -121,6 +121,10 @@ class Sabre_CalDAV_CalendarQueryParserTest extends PHPUnit_Framework_TestCase {
+ 
+     function testCompTimeRange() {
+ 
++        if (version_compare(PHP_VERSION, '5.5.10') >= 0) {
++            $this->markTestSkipped('Failing test starting with PHP 5.5.10');
++	}
++
+         $xml = array(
+             '<c:filter>',
+             '  <c:comp-filter name="VCALENDAR">',
+@@ -254,6 +258,10 @@ class Sabre_CalDAV_CalendarQueryParserTest extends PHPUnit_Framework_TestCase {
+ 
+     function testComplex() {
+ 
++	if (version_compare(PHP_VERSION, '5.5.10') >= 0) {
++            $this->markTestSkipped('Failing test starting with PHP 5.5.10');
++        }
++
+         $xml = array(
+             '<c:filter>',
+             '  <c:comp-filter name="VCALENDAR">',
diff --git a/debian/patches/series b/debian/patches/series
index e4166b6..05a084e 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 0001-Use-ClassLoader-from-Symfony-instead-of-autoload.patch
+0002-Skip-failing-tests-starting-with-PHP-5.5.10.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabredav.git



More information about the Pkg-owncloud-commits mailing list