unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33955] [PATCH 0/6] KDE: Enable more tests.
@ 2019-01-02 18:45 Hartmut Goebel
  2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:45 UTC (permalink / raw)
  To: 33955

After applying patches from #33820:
<http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33820> some more tests
pass. Activate them.

Hartmut Goebel (6):
  gnu: kcoreaddons: Enable test-suite.
  gnu: kirigami: Enable test-suite.
  gnu: kpackage: Enable test-suite.
  gnu: kemoticons: Enable test-suite.
  gnu: knewstuff: Enable test-suite.
  gnu: kwindowsystem: Enable test-suite.

 gnu/packages/kde-frameworks.scm | 91 ++++++++++++++++++++---------------------
 1 file changed, 45 insertions(+), 46 deletions(-)

-- 
2.13.7

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite.
  2019-01-02 18:45 [bug#33955] [PATCH 0/6] KDE: Enable more tests Hartmut Goebel
@ 2019-01-02 18:46 ` Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 2/6] gnu: kirigami: " Hartmut Goebel
                     ` (4 more replies)
  2019-01-03  1:59 ` [bug#33955] [PATCH 0/6] KDE: Enable more tests Meiyo Peng
  2019-01-14 21:50 ` Ludovic Courtès
  2 siblings, 5 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
  To: 33955

Enable running the tests and blacklist the one failing test.

* gnu/package/kde-frameworks.scm(kcoreaddons)[arguments]
  <#:tests?>: Remove. <#:phases>: Add phase 'blacklist-failing-test.
---
 gnu/packages/kde-frameworks.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 5ab97c0b0..35e10015e 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -566,9 +566,16 @@ propagate their changes to their respective configuration files.")
     (inputs
      `(("qtbase" ,qtbase)))
     (arguments
-     `(#:tests? #f ; FIXME: Test failure caused by stout/stderr being interleaved.
-       #:phases
+     `(#:phases
        (modify-phases %standard-phases
+         (add-before 'check 'blacklist-failing-test
+           (lambda _
+             ;; Blacklist a failing test-function. FIXME: Make it pass.
+             ;; Test failure caused by stout/stderr being interleaved.
+             (with-output-to-file "autotests/BLACKLIST"
+               (lambda _
+                 (display "[test_channels]\n*\n")))
+             #t))
          (add-before 'check 'check-setup
            (lambda _
              (setenv "HOME" (getcwd))
-- 
2.13.7

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#33955] [PATCH 2/6] gnu: kirigami: Enable test-suite.
  2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
@ 2019-01-02 18:46   ` Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 3/6] gnu: kpackage: " Hartmut Goebel
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
  To: 33955

The error which inhibited running the tests no longer occurs
in 5.49.0, although now no tests are found at all.  Since no tests
are found now, the phase 'check-setup can be removed, too,
and thus the 'arguments' at all.

* gnu/packages/kde-frameworks.scm(kirigami)[arguments]: Remove.
---
 gnu/packages/kde-frameworks.scm | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 35e10015e..62cf49c57 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -804,19 +804,6 @@ or user activity.")
        ("qtsvg" ,qtsvg)
        ;; Run-time dependency
        ("qtgraphicaleffects" ,qtgraphicaleffects)))
-    (arguments
-     `(#:tests? #f ;; FIXME: Test suite is broken,
-       ;; see https://bugs.kde.org/show_bug.cgi?id=386456
-       ;; Note for when enabling the tests: The test-suite is meant to be run
-       ;; without prior installation, see
-       ;; https://cgit.kde.org/kirigami.git/commit/?id=24ad2c9
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'check 'check-setup
-           (lambda* (#:key outputs #:allow-other-keys)
-             ;; make Qt render "offscreen", required for tests
-             (setenv "QT_QPA_PLATFORM" "offscreen")
-             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "QtQuick components for mobile user interfaces")
     (description "Kirigami is a set of high level QtQuick components looking
-- 
2.13.7

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#33955] [PATCH 3/6] gnu: kpackage: Enable test-suite.
  2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 2/6] gnu: kirigami: " Hartmut Goebel
@ 2019-01-02 18:46   ` Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 4/6] gnu: kemoticons: " Hartmut Goebel
                     ` (2 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
  To: 33955

* gnu/package/kde-frameworks.scm(kpackage)[arguments]
  <#:tests?>: Remove. <#:phases>: Add phase 'patch-tests.
---
 gnu/packages/kde-frameworks.scm | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 62cf49c57..07e30d4cf 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1834,8 +1834,7 @@ covers feedback and persistent events.")
        ("ki18n" ,ki18n)
        ("qtbase" ,qtbase)))
     (arguments
-     `(#:tests? #f ; FIXME: 3/9 tests fail.
-       #:phases
+     `(#:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'patch
            (lambda _
@@ -1847,6 +1846,17 @@ covers feedback and persistent events.")
                (("^\\s*(QDirIterator it\\(.*, QDirIterator::Subdirectories)(\\);)" _ a b)
                 (string-append a " | QDirIterator::FollowSymlinks" b)))
              #t))
+         (add-after 'unpack 'patch-tests
+           (lambda _
+             ;; /bin/ls doesn't exist in the build-container use /etc/passwd
+             (substitute* "autotests/packagestructuretest.cpp"
+               (("(addDirectoryDefinition\\(\")bin(\".*\")bin(\".*\")bin\""
+                 _ a b c)
+                (string-append a "etc" b "etc" c "etc\""))
+               (("filePath\\(\"bin\", QStringLiteral\\(\"ls\"))")
+                "filePath(\"etc\", QStringLiteral(\"passwd\"))")
+               (("\"/bin/ls\"") "\"/etc/passwd\""))
+             #t))
          (add-before 'check 'check-setup
            (lambda _
              (setenv "HOME" (getcwd))
-- 
2.13.7

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#33955] [PATCH 4/6] gnu: kemoticons: Enable test-suite.
  2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 2/6] gnu: kirigami: " Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 3/6] gnu: kpackage: " Hartmut Goebel
@ 2019-01-02 18:46   ` Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 5/6] gnu: knewstuff: " Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 6/6] gnu: kwindowsystem: " Hartmut Goebel
  4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
  To: 33955

Without anything changed the test-suite now passes, thus can be enabled.

* gnu/package/kde-frameworks.scm(kemoticons)[arguments]<#:tests?>: Remove.
---
 gnu/packages/kde-frameworks.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 07e30d4cf..079a8a75e 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2423,8 +2423,7 @@ engine WebKit via QtWebKit.")
        ("kcoreaddons" ,kcoreaddons)
        ("qtbase" ,qtbase)))
     (arguments
-     `(#:tests? #f ; FIXME: 2/2 tests fail.
-       #:phases
+     `(#:phases
        (modify-phases %standard-phases
          (add-before 'check 'check-setup
            (lambda _
-- 
2.13.7

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#33955] [PATCH 5/6] gnu: knewstuff: Enable test-suite.
  2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
                     ` (2 preceding siblings ...)
  2019-01-02 18:46   ` [bug#33955] [PATCH 4/6] gnu: kemoticons: " Hartmut Goebel
@ 2019-01-02 18:46   ` Hartmut Goebel
  2019-01-02 18:46   ` [bug#33955] [PATCH 6/6] gnu: kwindowsystem: " Hartmut Goebel
  4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
  To: 33955

Without anything changed the test-suite now passes, thus can be enabled.

* gnu/package/kde-frameworks.scm(knewstuff)[arguments]<#:tests?>: Remove.
---
 gnu/packages/kde-frameworks.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 079a8a75e..45580cb5f 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2727,8 +2727,7 @@ KIO enabled infrastructure.")
        ("solid" ,solid)
        ("sonnet" ,sonnet)))
     (arguments
-     `(#:tests? #f ; FIXME: 1/3 tests fail.
-       #:phases
+     `(#:phases
        (modify-phases %standard-phases
          (add-before 'check 'check-setup
            (lambda _ ; XDG_DATA_DIRS isn't set
-- 
2.13.7

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#33955] [PATCH 6/6] gnu: kwindowsystem: Enable test-suite.
  2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
                     ` (3 preceding siblings ...)
  2019-01-02 18:46   ` [bug#33955] [PATCH 5/6] gnu: knewstuff: " Hartmut Goebel
@ 2019-01-02 18:46   ` Hartmut Goebel
  4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
  To: 33955

* gnu/package/kde-frameworks.scm(kwindowsystem)
  [inputs]: Add openbox.
  [arguments] <#:tests?> Remove.
  <#:phases> 'blacklist-failing-tests: New phase.
  <#:phases> 'check: Start openbox, don't set QT_PLUGIN_PATH, use invkove,
  simplify and cleanup code. No longer move 'check behind install.
---
 gnu/packages/kde-frameworks.scm | 47 +++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 45580cb5f..72fd8f20f 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
-;;; Copyright © 2016,2017,2018 Hartmut Goebel <h.goebel@crazy-compilers.com>
+;;; Copyright © 2016-2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
 ;;; Copyright © 2016 David Craven <david@craven.ch>
 ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
@@ -56,6 +56,7 @@
   #:use-module (gnu packages libreoffice)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages mp3)
+  #:use-module (gnu packages openbox)
   #:use-module (gnu packages pdf)
   #:use-module (gnu packages pcre)
   #:use-module (gnu packages perl)
@@ -1093,6 +1094,7 @@ configuration pages, message boxes, and password requests.")
      `(("extra-cmake-modules" ,extra-cmake-modules)
        ("pkg-config" ,pkg-config)
        ("dbus" ,dbus) ; for the tests
+       ("openbox" ,openbox) ; for the tests
        ("qttools" ,qttools)
        ("xorg-server" ,xorg-server))) ; for the tests
     (inputs
@@ -1101,31 +1103,26 @@ configuration pages, message boxes, and password requests.")
        ("qtx11extras" ,qtx11extras)
        ("xcb-utils-keysyms" ,xcb-util-keysyms)))
     (arguments
-     `(#:tests? #f ; FIXME: 3/12 tests fail.
-       #:phases
+     `(#:phases
        (modify-phases %standard-phases
-         (delete 'check)
-         (add-after 'install 'check
-           (lambda* (#:key inputs outputs tests? #:allow-other-keys)
-             ;; TODO: Simplify and use "common" phases when test-suite passes
-             (if tests?
-                 (begin
-                   (let ((out (assoc-ref outputs "out")))
-                     (setenv "QT_PLUGIN_PATH"
-                             (string-append out "/lib/qt5/plugins:"
-                                            (getenv "QT_PLUGIN_PATH"))))
-                   ;; The test suite requires a running X server, setting
-                   ;; QT_QPA_PLATFORM=offscreen does not suffice and even make
-                   ;; some tests fail.
-                   (system (string-append (assoc-ref inputs "xorg-server")
-                                          "/bin/Xvfb :1 -screen 0 640x480x24 &"))
-                   (setenv "DISPLAY" ":1")
-                   (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
-                   (setenv "DBUS_FATAL_WARNINGS" "0")
-                   (zero? (system* "dbus-launch" "ctest" ".")))
-                 (begin
-                   (format #t "test suite not run~%")
-                   #t)))))))
+         (add-before 'check 'blacklist-failing-tests
+           (lambda _
+             ;; Blacklist a failing test-functions. FIXME: Make it pass.
+             (with-output-to-file "autotests/BLACKLIST"
+               (lambda _
+                 (display "[testState]\n*\n")
+                 (display "[testSupported]\n*\n")))
+             #t))
+         (replace 'check
+           (lambda _
+             ;; The test suite requires a running window anager
+             (system "Xvfb :1 -ac -screen 0 640x480x24 &")
+             (setenv "DISPLAY" ":1")
+             (sleep 5) ;; Give Xvfb a few moments to get on it's feet
+             (system "openbox &")
+             (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             (invoke "dbus-launch" "ctest" "."))))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "KDE access to the windowing system")
     (description "KWindowSystem provides information about and allows
-- 
2.13.7

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#33955] [PATCH 0/6] KDE: Enable more tests.
  2019-01-02 18:45 [bug#33955] [PATCH 0/6] KDE: Enable more tests Hartmut Goebel
  2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
@ 2019-01-03  1:59 ` Meiyo Peng
  2019-01-03 19:40   ` [bug#33951] " Hartmut Goebel
  2019-01-14 21:50 ` Ludovic Courtès
  2 siblings, 1 reply; 13+ messages in thread
From: Meiyo Peng @ 2019-01-03  1:59 UTC (permalink / raw)
  To: Hartmut Goebel; +Cc: 33955

Hi Hartmut,

Hartmut Goebel <h.goebel@crazy-compilers.com> writes:

> After applying patches from #33820:
> <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33820> some more tests
> pass. Activate them.
>
> Hartmut Goebel (6):
>   gnu: kcoreaddons: Enable test-suite.
>   gnu: kirigami: Enable test-suite.
>   gnu: kpackage: Enable test-suite.
>   gnu: kemoticons: Enable test-suite.
>   gnu: knewstuff: Enable test-suite.
>   gnu: kwindowsystem: Enable test-suite.
>
>  gnu/packages/kde-frameworks.scm | 91 ++++++++++++++++++++---------------------
>  1 file changed, 45 insertions(+), 46 deletions(-)

Would you mind having a look at patch #33951:
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=33951

I found that bug while investigating kwindowsystem. That bug caused
kwindowsystem installed plugins into PREFIX/lib/plugins rather than
PREFIX/lib/qt5/plugins.

Thanks.

--
Meiyo Peng
https://www.pengmeiyu.com/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#33951] [bug#33955] [PATCH 0/6] KDE: Enable more tests.
  2019-01-03  1:59 ` [bug#33955] [PATCH 0/6] KDE: Enable more tests Meiyo Peng
@ 2019-01-03 19:40   ` Hartmut Goebel
  2019-01-04  1:16     ` Meiyo Peng
  0 siblings, 1 reply; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-03 19:40 UTC (permalink / raw)
  To: Meiyo Peng, 33951

Hi Meiyo,
> Would you mind having a look at patch #33951: 

Thanks for pointing me to this.

This mainly is a duplicate of
<https://debbugs.gnu.org/cgi/bugreport.cgi?bug=33812#5> which I files a
few days earlier.

The difference is that #33951 does not care about the Android
special-case, while #33812 tries to do and adds a respective comment. So
IMHO #33812 is to be preferred. WDYT?

-- 
Regards
Hartmut Goebel

| Hartmut Goebel          | h.goebel@crazy-compilers.com               |
| www.crazy-compilers.com | compilers which you thought are impossible |

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#33951] [bug#33955] [PATCH 0/6] KDE: Enable more tests.
  2019-01-03 19:40   ` [bug#33951] " Hartmut Goebel
@ 2019-01-04  1:16     ` Meiyo Peng
  2019-01-04  9:27       ` bug#33951: " Hartmut Goebel
  0 siblings, 1 reply; 13+ messages in thread
From: Meiyo Peng @ 2019-01-04  1:16 UTC (permalink / raw)
  To: Hartmut Goebel; +Cc: 33951

Hi Hartmut,

Hartmut Goebel <h.goebel@crazy-compilers.com> writes:

> Hi Meiyo,
>> Would you mind having a look at patch #33951:
>
> Thanks for pointing me to this.
>
> This mainly is a duplicate of
> <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=33812#5> which I files a
> few days earlier.

Sorry, I didn't notice your patch.

> The difference is that #33951 does not care about the Android
> special-case, while #33812 tries to do and adds a respective comment. So
> IMHO #33812 is to be preferred. WDYT?

You are doing a great job. I agree to keep #33812 and drop #33951.

--
Meiyo Peng
https://www.pengmeiyu.com/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#33951: [bug#33955] [PATCH 0/6] KDE: Enable more tests.
  2019-01-04  1:16     ` Meiyo Peng
@ 2019-01-04  9:27       ` Hartmut Goebel
  0 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-04  9:27 UTC (permalink / raw)
  To: Meiyo Peng; +Cc: 33951-close

Am 04.01.19 um 02:16 schrieb Meiyo Peng:

> You are doing a great job.

Thanks :-)

> I agree to keep #33812 and drop #33951.

I applied #33812 as b824dbec5d331e79a50734fb543bbe064eb7fc17.


-- 
Regards
Hartmut Goebel

| Hartmut Goebel          | h.goebel@crazy-compilers.com               |
| www.crazy-compilers.com | compilers which you thought are impossible |

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#33955] [PATCH 0/6] KDE: Enable more tests.
  2019-01-02 18:45 [bug#33955] [PATCH 0/6] KDE: Enable more tests Hartmut Goebel
  2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
  2019-01-03  1:59 ` [bug#33955] [PATCH 0/6] KDE: Enable more tests Meiyo Peng
@ 2019-01-14 21:50 ` Ludovic Courtès
  2019-01-16 23:20   ` bug#33955: " Hartmut Goebel
  2 siblings, 1 reply; 13+ messages in thread
From: Ludovic Courtès @ 2019-01-14 21:50 UTC (permalink / raw)
  To: Hartmut Goebel; +Cc: 33955

Hello Hartmut,

Hartmut Goebel <h.goebel@crazy-compilers.com> skribis:

> After applying patches from #33820:
> <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33820> some more tests
> pass. Activate them.
>
> Hartmut Goebel (6):
>   gnu: kcoreaddons: Enable test-suite.
>   gnu: kirigami: Enable test-suite.
>   gnu: kpackage: Enable test-suite.
>   gnu: kemoticons: Enable test-suite.
>   gnu: knewstuff: Enable test-suite.
>   gnu: kwindowsystem: Enable test-suite.

The patches LGTM, and it’s a great initiative!

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#33955: [PATCH 0/6] KDE: Enable more tests.
  2019-01-14 21:50 ` Ludovic Courtès
@ 2019-01-16 23:20   ` Hartmut Goebel
  0 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-16 23:20 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 33955-close

Applied as 2615ee95204fbd5cbc73d236ecbd24a4fbdc5de5
Thanks for the review.

-- 
Regards
Hartmut Goebel

| Hartmut Goebel          | h.goebel@crazy-compilers.com               |
| www.crazy-compilers.com | compilers which you thought are impossible |

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2019-01-16 23:34 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-02 18:45 [bug#33955] [PATCH 0/6] KDE: Enable more tests Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
2019-01-02 18:46   ` [bug#33955] [PATCH 2/6] gnu: kirigami: " Hartmut Goebel
2019-01-02 18:46   ` [bug#33955] [PATCH 3/6] gnu: kpackage: " Hartmut Goebel
2019-01-02 18:46   ` [bug#33955] [PATCH 4/6] gnu: kemoticons: " Hartmut Goebel
2019-01-02 18:46   ` [bug#33955] [PATCH 5/6] gnu: knewstuff: " Hartmut Goebel
2019-01-02 18:46   ` [bug#33955] [PATCH 6/6] gnu: kwindowsystem: " Hartmut Goebel
2019-01-03  1:59 ` [bug#33955] [PATCH 0/6] KDE: Enable more tests Meiyo Peng
2019-01-03 19:40   ` [bug#33951] " Hartmut Goebel
2019-01-04  1:16     ` Meiyo Peng
2019-01-04  9:27       ` bug#33951: " Hartmut Goebel
2019-01-14 21:50 ` Ludovic Courtès
2019-01-16 23:20   ` bug#33955: " Hartmut Goebel

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).