summaryrefslogtreecommitdiffstats
path: root/src/applet/test_report.c
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-12-09 14:51:18 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-12-09 14:51:18 +0100
commitbed685672e74b57c47b4e1053b373784d6b41b0a (patch)
treee357627a6537980806c5ca8e0cd8b1547c26a612 /src/applet/test_report.c
parent0090941146f28d4618683e15603c15b868704e68 (diff)
downloadabrt-bed685672e74b57c47b4e1053b373784d6b41b0a.tar.gz
abrt-bed685672e74b57c47b4e1053b373784d6b41b0a.tar.xz
abrt-bed685672e74b57c47b4e1053b373784d6b41b0a.zip
move test app for libreport from c++ to C
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/applet/test_report.c')
-rw-r--r--src/applet/test_report.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/applet/test_report.c b/src/applet/test_report.c
new file mode 100644
index 00000000..92a5d0af
--- /dev/null
+++ b/src/applet/test_report.c
@@ -0,0 +1,62 @@
+/*
+ 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)
+{
+ crash_data_t *crash_data = new_crash_data();
+
+ add_to_crash_data(crash_data, "analyzer", "wow");
+ const char *event = "report";
+
+ struct dump_dir *dd = create_crash_dump_dir(crash_data);
+ free_crash_data(crash_data);
+ 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;
+}