From d09af1b80697c4ed02e420ca89f2675b14b0f47b Mon Sep 17 00:00:00 2001 From: Nikola Pajkovsky Date: Mon, 13 Jun 2011 13:33:30 +0200 Subject: move libreport into its own git ssh://git.fedorahosted.org/git/libreport.git --- libreport/src/report-python/test_full | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 libreport/src/report-python/test_full (limited to 'libreport/src/report-python/test_full') diff --git a/libreport/src/report-python/test_full b/libreport/src/report-python/test_full deleted file mode 100755 index 107c4857..00000000 --- a/libreport/src/report-python/test_full +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/python - -import sys -from report import * - -def run_event_on_problem_data(cd, event, log_function = None): - dd = cd.create_dump_dir("/tmp") - dir_name = dd.name - print "Created dump_dir:", dir_name - dd.close() - run_state = run_event_state() - if log_function: # maybe if callable(log_function)? - run_state.logging_callback = log_function - print "Running event:", event - r = run_state.run_event_on_dir_name(dir_name, event) - print "Deleting:", dir_name - delete_dump_dir(dir_name) - return r; - -def log_function(line): - print "LOG:", line - -cd = problem_data() -cd.add("foo", "bar") -cd.add("analyzer", "baz", CD_FLAG_ISNOTEDITABLE) -r = run_event_on_problem_data(cd, "post-create", log_function) -print "Result:", r -- cgit