Tests: Add verbose support to test script
[urcu.git] / tests / unit / run.sh
index c6c50fd9cff94ecb02ef1e9b3eab2e98180043c6..1ec7e5e722c2f0ab1d54e33411334035ff1bceb4 100755 (executable)
@@ -1,6 +1,7 @@
 #!/bin/bash
 #
 # Copyright (C) 2013 - Christian Babeux <christian.babeux@efficios.com>
+#               2016 - Michael Jeanson <mjeanson@efficios.com>
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #
 
-[ -z "$1" ] && echo "Error: No testlist. Please specify a testlist to run." && exit 1
+INPUT=$1
+ARGS=()
+shift 1
 
-prove --merge --exec '' - < $1
+if [ -z "${INPUT}" ]; then
+    echo "Error: No testlist. Please specify a testlist to run."
+    exit 1
+fi
+
+if [ "x$V" == "x1" ]; then
+    ARGS+=('-v')
+fi
+
+prove "${@}" "${ARGS[@]}" --merge --exec '' - < "${INPUT}"
This page took 0.022698 seconds and 4 git commands to generate.