From 4aed2c8219774f5d797760606b8489a92ddc5163 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- drkonqi/crashtest.cpp | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 drkonqi/crashtest.cpp (limited to 'drkonqi/crashtest.cpp') diff --git a/drkonqi/crashtest.cpp b/drkonqi/crashtest.cpp new file mode 100644 index 000000000..8d41e6325 --- /dev/null +++ b/drkonqi/crashtest.cpp @@ -0,0 +1,92 @@ +// Let's crash. +#include +#include +#include +#include +#include +#include + +static KCmdLineOptions options[] = +{ + { "+crash|malloc|div0|assert", "Type of crash.", 0 }, + KCmdLineLastOption +}; + +enum CrashType { Crash, Malloc, Div0, Assert }; + +void do_crash() +{ + KCmdLineArgs *args = 0; + QCString type = args->arg(0); + printf("result = %s\n", type.data()); +} + +void do_malloc() +{ + delete (char*)0xdead; +} + +void do_div0() +{ + volatile int a = 99; + volatile int b = 10; + volatile int c = a / ( b - 10 ); + printf("result = %d\n", c); +} + +void do_assert() +{ + assert(false); +} + +void level4(int t) +{ + if (t == Malloc) + do_malloc(); + else if (t == Div0) + do_div0(); + else if (t == Assert) + do_assert(); + else + do_crash(); +} + +void level3(int t) +{ + level4(t); +} + +void level2(int t) +{ + level3(t); +} + +void level1(int t) +{ + level2(t); +} + +int main(int argc, char *argv[]) +{ + KAboutData aboutData("crashtext", "Crash Test for DrKonqi", + "1.1", + "Crash Test for DrKonqi", + KAboutData::License_GPL, + "(c) 2000-2002 David Faure, Waldo Bastian"); + + KCmdLineArgs::init(argc, argv, &aboutData); + KCmdLineArgs::addCmdLineOptions(options); + + KApplication app(false, false); + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + QCString type = args->count() ? args->arg(0) : ""; + int crashtype = Crash; + if (type == "malloc") + crashtype = Malloc; + else if (type == "div0") + crashtype = Div0; + else if (type == "assert") + crashtype = Assert; + level1(crashtype); + return app.exec(); +} -- cgit v1.2.3