[perl-Test-Simple] Save the patch

Petr Pisar ppisar at fedoraproject.org
Fri Aug 9 07:45:20 UTC 2013


commit 2aac65f26b4b9b9165860b2955893ffb90ff9cd6
Author: Petr Písař <ppisar at redhat.com>
Date:   Fri Aug 9 09:44:58 2013 +0200

    Save the patch

 ...le-0.98_05-Pass-regular-expression-intact.patch |   45 ++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)
---
diff --git a/Test-Simple-0.98_05-Pass-regular-expression-intact.patch b/Test-Simple-0.98_05-Pass-regular-expression-intact.patch
new file mode 100644
index 0000000..f7d5c20
--- /dev/null
+++ b/Test-Simple-0.98_05-Pass-regular-expression-intact.patch
@@ -0,0 +1,45 @@
+From 919f7398038fe24e7e23ffcff5c5abe1f00d13ce Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar at redhat.com>
+Date: Fri, 9 Aug 2013 09:16:10 +0200
+Subject: [PATCH] Pass regular expression intact
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+This commit:
+
+commit 497965306444982d4948e24811e44e72619885f8
+Author: Michael G. Schwern <schwern at pobox.com>
+Date:   Mon Apr 15 17:13:43 2013 +0100
+
+    Fix Test::Builder::Tester so it works with subtests.
+
+broke test_err(qr//) because it converted the expression to a string.
+This patch omits regular expressions from indentation.
+
+<https://github.com/schwern/test-more/issues/387>
+
+Signed-off-by: Petr Písař <ppisar at redhat.com>
+---
+ lib/Test/Builder/Tester.pm | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/lib/Test/Builder/Tester.pm b/lib/Test/Builder/Tester.pm
+index 299ee52..fed11b5 100644
+--- a/lib/Test/Builder/Tester.pm
++++ b/lib/Test/Builder/Tester.pm
+@@ -479,6 +479,11 @@ sub expect {
+ sub _account_for_subtest {
+     my( $self, $check ) = @_;
+ 
++    if (ref $check) {
++        # Do not mangle regular expression
++        return $check;
++    }
++
+     # Since we ship with Test::Builder, calling a private method is safe...ish.
+     return $t->_indent . $check;
+ }
+-- 
+1.8.1.4
+


More information about the scm-commits mailing list