[SCM] syntax-highlighting packaging branch, master, updated. debian/5.37.0-3-51-gabd7d44

Maximiliano Curia maxy at moszumanska.debian.org
Tue Jan 2 18:52:30 UTC 2018


Gitweb-URL: http://git.debian.org/?p=pkg-kde/frameworks/syntax-highlighting.git;a=commitdiff;h=b7d066b

The following commit has been merged in the master branch:
commit b7d066b15a7431977dbbb2442fa8d432f899f932
Author: Harald Sitter <sitter at kde.org>
Date:   Mon Nov 7 13:40:34 2016 +0100

    import a temporary patch to help with isolation debugging
---
 .../0001-don-t-ignore-return-value-verify-it.patch | 27 ++++++++++++++++++++++
 debian/patches/series                              |  1 +
 2 files changed, 28 insertions(+)

diff --git a/debian/patches/0001-don-t-ignore-return-value-verify-it.patch b/debian/patches/0001-don-t-ignore-return-value-verify-it.patch
new file mode 100644
index 0000000..900a685
--- /dev/null
+++ b/debian/patches/0001-don-t-ignore-return-value-verify-it.patch
@@ -0,0 +1,27 @@
+From 2996ec02a5e442bc8edbaebb0bf0973c6ccfdd5f Mon Sep 17 00:00:00 2001
+From: Harald Sitter <sitter at kde.org>
+Date: Mon, 7 Nov 2016 13:39:28 +0100
+Subject: [PATCH] don't ignore return value, verify it
+
+if we can't mkdir the output dir all tests will fail on creating the output
+file, but rather implicitly at that
+---
+ autotests/testhighlighter.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/autotests/testhighlighter.cpp b/autotests/testhighlighter.cpp
+index f802381..2b2118c 100644
+--- a/autotests/testhighlighter.cpp
++++ b/autotests/testhighlighter.cpp
+@@ -144,7 +144,7 @@ private Q_SLOTS:
+                 << syntax;
+         }
+ 
+-        QDir().mkpath(QStringLiteral(TESTBUILDDIR "/output/"));
++        QVERIFY(QDir().mkpath(QStringLiteral(TESTBUILDDIR "/output/")));
+     }
+ 
+     void testHighlight()
+-- 
+2.7.4
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..611230e
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-don-t-ignore-return-value-verify-it.patch

-- 
syntax-highlighting packaging



More information about the pkg-kde-commits mailing list