summaryrefslogtreecommitdiffhomepage
path: root/tracker-test
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-05-06 13:34:41 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-05-10 11:19:22 +0200
commite7cdb5b6a0e0152297369d57774caae307e1be77 (patch)
treed65443cc0c3f6d358fe1e74346e3eab64d5193f5 /tracker-test
parentba038ce052af5ada52a0117c9f13e44cf1c63f1c (diff)
tracker/test: add a quick way to crash the application
Don't leave home without it.
Diffstat (limited to 'tracker-test')
-rw-r--r--tracker-test/test.cpp6
-rw-r--r--tracker-test/test.ui25
2 files changed, 27 insertions, 4 deletions
diff --git a/tracker-test/test.cpp b/tracker-test/test.cpp
index 06a4f1f2..c0bc4ef3 100644
--- a/tracker-test/test.cpp
+++ b/tracker-test/test.cpp
@@ -8,8 +8,10 @@
#include "test.h"
#include "api/plugin-api.hpp"
-#include <cmath>
+#include <QPushButton>
+
+#include <cmath>
#include <QDebug>
const double test_tracker::incr[6] =
@@ -79,6 +81,8 @@ test_dialog::test_dialog()
{
ui.setupUi(this);
+ connect(ui.buttonBox->button(QDialogButtonBox::Abort), &QPushButton::clicked, []() { *(volatile int*)0 = 0; });
+
connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
}
diff --git a/tracker-test/test.ui b/tracker-test/test.ui
index 1141d584..556b19a3 100644
--- a/tracker-test/test.ui
+++ b/tracker-test/test.ui
@@ -9,8 +9,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>184</width>
- <height>39</height>
+ <width>278</width>
+ <height>58</height>
</rect>
</property>
<property name="windowTitle">
@@ -28,9 +28,28 @@
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
+ <widget class="QLabel" name="label">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Minimum" vsizetype="Maximum">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>Pressing &quot;Abort&quot; will immediately crash the application.</string>
+ </property>
+ </widget>
+ </item>
+ <item>
<widget class="QDialogButtonBox" name="buttonBox">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Minimum" vsizetype="Maximum">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
<property name="standardButtons">
- <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+ <set>QDialogButtonBox::Abort|QDialogButtonBox::Close</set>
</property>
</widget>
</item>