diff options
-rw-r--r-- | test/pacman/tap.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/pacman/tap.py b/test/pacman/tap.py index 6a3bee0d..eb0747be 100644 --- a/test/pacman/tap.py +++ b/test/pacman/tap.py @@ -21,6 +21,11 @@ failed = 0 def _output(msg): print("%s%s" % (" "*level, str(msg).replace("\n", "\\n"))) +def skip_all(description=""): + if description: + description = " # " + description + _output("1..0%s" % (description)) + def ok(ok, description=""): global count, failed count += 1 |