summaryrefslogtreecommitdiffstats
path: root/src/applet
diff options
context:
space:
mode:
Diffstat (limited to 'src/applet')
-rw-r--r--src/applet/Makefile.am10
-rw-r--r--src/applet/test_report.cpp61
2 files changed, 71 insertions, 0 deletions
diff --git a/src/applet/Makefile.am b/src/applet/Makefile.am
index 4207e818..d32eaa37 100644
--- a/src/applet/Makefile.am
+++ b/src/applet/Makefile.am
@@ -1,4 +1,5 @@
bin_PROGRAMS = abrt-applet
+#test-report
abrt_applet_SOURCES = \
Applet.cpp \
@@ -30,6 +31,15 @@ abrt_applet_LDADD = \
$(LIBNOTIFY_LIBS) \
$(GTK_LIBS)
+#test_report_SOURCES = \
+# test_report.cpp
+#test_report_CPPFLAGS = \
+# -Wall -Werror \
+# -I$(srcdir)/../include \
+# -D_GNU_SOURCE
+#test_report_LDADD = \
+# ../lib/libabrt.la
+
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
@INTLTOOL_DESKTOP_RULE@
diff --git a/src/applet/test_report.cpp b/src/applet/test_report.cpp
new file mode 100644
index 00000000..b93b6759
--- /dev/null
+++ b/src/applet/test_report.cpp
@@ -0,0 +1,61 @@
+/*
+ Copyright (C) 2009 Jiri Moskovcak (jmoskovc@redhat.com)
+ Copyright (C) 2009 RedHat inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+*/
+#if HAVE_LOCALE_H
+# include <locale.h>
+#endif
+#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
+#include "crash_dump.h"
+#include "dump_dir.h"
+#include "run_event.h"
+
+static char *do_log(char *log_line, void *param)
+{
+ printf("%s\n", log_line);
+ return log_line;
+}
+
+int main(int argc, char** argv)
+{
+ map_crash_data_t cd;
+
+ add_to_crash_data(cd, "analyzer", "wow");
+ const char *event = "report";
+
+ struct dump_dir *dd = create_crash_dump_dir(cd);
+ if (!dd)
+ return 1;
+ char *dir_name = strdup(dd->dd_dir);
+ dd_close(dd);
+
+ printf("Temp dump dir: '%s'\n", dir_name);
+
+ struct run_event_state *run_state = new_run_event_state();
+ run_state->logging_callback = do_log;
+ int r = run_event(run_state, dir_name, event);
+ if (r == -1)
+ printf("No actions are found for event '%s'\n", event);
+ free_run_event_state(run_state);
+
+// delete_crash_dump_dir(dir_name);
+ free(dir_name);
+
+ return 0;
+}