summaryrefslogtreecommitdiff
path: root/tools/test-wrapper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/test-wrapper.sh')
-rwxr-xr-xtools/test-wrapper.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/tools/test-wrapper.sh b/tools/test-wrapper.sh
deleted file mode 100755
index 9490067..0000000
--- a/tools/test-wrapper.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-# Make tests shut up. On success, if stdout is a tty, we only output messages
-# about skipped tests; on failure, or if stdout is a file or pipe, we output
-# the lot.
-#
-# Usage: test-wrapper.sh PROGRAM [ARGS...]
-
-set -e
-
-if test -t 1 && test "z$CHECK_VERBOSE" = z; then
- : # continue with the output-suppressed code path, below
-else
- "$@" || e=$?
- exit $e
-fi
-
-e=0
-"$@" > capture-$$.log 2>&1 || e=$?
-if test z$e = z0; then
- grep -i skipped capture-$$.log || true
- rm -f capture-$$.log
-else
- cat capture-$$.log
- exit $e
-fi
-
-# Copyright © 2010 Collabora Ltd. <http://www.collabora.co.uk/>
-# Copying and distribution of this file, with or without modification,
-# are permitted in any medium without royalty provided the copyright
-# notice and this notice are preserved. There is no warranty.