about summary refs log tree commit diff stats
path: root/test/utils/monothread.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2016-04-06 10:02:34 +0200
committerCamille Mougey <commial@gmail.com>2016-04-06 10:02:34 +0200
commitcba4c6b1d0e937e2dc14682b4f3efc2d5d4fec72 (patch)
treeaaa33f85493afce3e7401efdd9dc2cc5404fc337 /test/utils/monothread.py
parent5db3ce6a4a1bba435fd39b9700feb7cb2256663b (diff)
parente21cdd93c7352bc9d8f31d920b8b9596caaa7444 (diff)
downloadmiasm-cba4c6b1d0e937e2dc14682b4f3efc2d5d4fec72.tar.gz
miasm-cba4c6b1d0e937e2dc14682b4f3efc2d5d4fec72.zip
Merge pull request #349 from serpilliere/clean_test_output
Clean test output
Diffstat (limited to 'test/utils/monothread.py')
-rw-r--r--test/utils/monothread.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/utils/monothread.py b/test/utils/monothread.py
deleted file mode 100644
index ae64f3c5..00000000
--- a/test/utils/monothread.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import sys
-import cosmetics
-
-
-def task_done(test, error):
-    s = "[%s] Running tests on %s ..." % (test.base_dir.upper(),
-                                          " ".join(test.command_line))
-    already_printed = len(s)
-    if error is not None:
-        cosmetics.write_colored("ERROR", "red", already_printed)
-        print error
-    else:
-        cosmetics.write_colored("OK", "green", already_printed)
-
-
-def task_new(test):
-    s = "[%s] Running tests on %s ..." % (test.base_dir.upper(),
-                                          " ".join(test.command_line))
-    sys.stdout.write(s)
-    sys.stdout.flush()