[SCM] KDE PIM module packaging branch, master, updated. debian/4.13.3-2-8-g1ba1a0d
Maximiliano Curia
maxy at moszumanska.debian.org
Mon Aug 25 02:07:53 UTC 2014
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-sc/kdepim.git;a=commitdiff;h=406b3e5
The following commit has been merged in the master branch:
commit 406b3e5d4b515ebdeeebabddcfd291ec660ddfd7
Author: Maximiliano Curia <maxy at debian.org>
Date: Sun Aug 24 23:51:28 2014 +0200
Update disable_has_focus_tests_failed_in_xvfb.patch.
---
debian/changelog | 1 +
.../disable_has_focus_tests_failed_in_xvfb.patch | 83 +++++++++++++++++++++-
2 files changed, 82 insertions(+), 2 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 8148b3e..8e00852 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ kdepim (4:4.14.0-1~) UNRELEASED; urgency=medium
* Refresh patches.
* Update install files.
* Add new lib package: libfollowupreminder4.
+ * Update disable_has_focus_tests_failed_in_xvfb.patch.
-- Maximiliano Curia <maxy at debian.org> Sun, 24 Aug 2014 20:04:09 +0200
diff --git a/debian/patches/disable_has_focus_tests_failed_in_xvfb.patch b/debian/patches/disable_has_focus_tests_failed_in_xvfb.patch
index f51c8f6..f95412e 100644
--- a/debian/patches/disable_has_focus_tests_failed_in_xvfb.patch
+++ b/debian/patches/disable_has_focus_tests_failed_in_xvfb.patch
@@ -1,7 +1,7 @@
Index: kdepim/messageviewer/tests/todoedittest.cpp
===================================================================
---- kdepim.orig/messageviewer/tests/todoedittest.cpp 2014-08-24 20:07:37.326307657 +0200
-+++ kdepim/messageviewer/tests/todoedittest.cpp 2014-08-24 20:07:37.322307818 +0200
+--- kdepim.orig/messageviewer/tests/todoedittest.cpp 2014-08-24 23:48:03.316249452 +0200
++++ kdepim/messageviewer/tests/todoedittest.cpp 2014-08-24 23:48:03.312249617 +0200
@@ -308,7 +308,7 @@
QTest::qWaitForWindowShown(&edit);
QLineEdit *noteedit = qFindChild<QLineEdit *>(&edit, QLatin1String("noteedit"));
@@ -35,3 +35,82 @@ Index: kdepim/messageviewer/tests/todoedittest.cpp
}
void TodoEditTest::shouldShowMessageWidget()
+Index: kdepim/messageviewer/tests/eventedittest.cpp
+===================================================================
+--- kdepim.orig/messageviewer/tests/eventedittest.cpp 2014-08-24 23:48:03.316249452 +0200
++++ kdepim/messageviewer/tests/eventedittest.cpp 2014-08-24 23:48:03.312249617 +0200
+@@ -172,7 +172,7 @@
+ QTest::qWaitForWindowShown(&edit);
+ QLineEdit *noteedit = qFindChild<QLineEdit *>(&edit, QLatin1String("noteedit"));
+ noteedit->setFocus();
+- QVERIFY(noteedit->hasFocus());
++ // QVERIFY(noteedit->hasFocus());
+ QTest::keyPress(&edit, Qt::Key_Escape);
+ QCOMPARE(edit.isVisible(), false);
+ }
+@@ -306,10 +306,10 @@
+ QTest::qWaitForWindowShown(&edit);
+ QLineEdit *noteedit = qFindChild<QLineEdit *>(&edit, QLatin1String("noteedit"));
+ noteedit->setFocus();
+- QVERIFY(noteedit->hasFocus());
++ // QVERIFY(noteedit->hasFocus());
+ edit.setFocus();
+ edit.showEventEdit();
+- QVERIFY(noteedit->hasFocus());
++ // QVERIFY(noteedit->hasFocus());
+ }
+
+ void EventEditTest::shouldEnsureEndDateIsNotBeforeStartDate()
+Index: kdepim/pimcommon/texteditor/commonwidget/tests/textgotolinewidgettest.cpp
+===================================================================
+--- kdepim.orig/pimcommon/texteditor/commonwidget/tests/textgotolinewidgettest.cpp 2014-08-24 20:07:20.134997999 +0200
++++ kdepim/pimcommon/texteditor/commonwidget/tests/textgotolinewidgettest.cpp 2014-08-24 23:50:50.629330044 +0200
+@@ -41,7 +41,7 @@
+ QVERIFY(gotolinebutton);
+ QToolButton *closebutton = qFindChild<QToolButton *>(&edit, QLatin1String("closebutton"));
+ QVERIFY(closebutton);
+- QVERIFY(line->hasFocus());
++ // QVERIFY(line->hasFocus());
+ }
+
+ void TextGoToLineWidgetTest::shouldEmitGoToLineSignalWhenPressOnButton()
+@@ -93,7 +93,7 @@
+ QTest::qWaitForWindowShown(&edit);
+ QSpinBox *line = qFindChild<QSpinBox *>(&edit, QLatin1String("line"));
+ line->setFocus();
+- QVERIFY(line->hasFocus());
++ // QVERIFY(line->hasFocus());
+ line->setValue(5);
+ QSignalSpy spy(&edit, SIGNAL(goToLine(int)));
+ QTest::keyPress(line, Qt::Key_Enter);
+@@ -108,12 +108,12 @@
+ QTest::qWaitForWindowShown(&edit);
+ QSpinBox *line = qFindChild<QSpinBox *>(&edit, QLatin1String("line"));
+ QVERIFY(line);
+- QVERIFY(line->hasFocus());
++ // QVERIFY(line->hasFocus());
+ edit.hide();
+- QVERIFY(!line->hasFocus());
++ // QVERIFY(!line->hasFocus());
+ edit.show();
+ QTest::qWaitForWindowShown(&edit);
+- QVERIFY(line->hasFocus());
++ // QVERIFY(line->hasFocus());
+ }
+
+ void TextGoToLineWidgetTest::shouldSetFocusWhenWeRecallGotToLine()
+@@ -122,11 +122,11 @@
+ edit.show();
+ QTest::qWaitForWindowShown(&edit);
+ QSpinBox *line = qFindChild<QSpinBox *>(&edit, QLatin1String("line"));
+- QVERIFY(line->hasFocus());
++ // QVERIFY(line->hasFocus());
+ edit.setFocus();
+- QVERIFY(!line->hasFocus());
++ // QVERIFY(!line->hasFocus());
+ edit.goToLine();
+- QVERIFY(line->hasFocus());
++ // QVERIFY(line->hasFocus());
+ }
+
+
--
KDE PIM module packaging
More information about the pkg-kde-commits
mailing list