Tests: Add verbose support to test script
[urcu.git] / tests / regression / run.sh
index d99a49325d5f0481c19ceba6b1430478bd8b7eee..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
 #
 
 INPUT=$1
+ARGS=()
 shift 1
 
-[ -z "${INPUT}" ] && echo "Error: No testlist. Please specify a testlist to run." && exit 1
+if [ -z "${INPUT}" ]; then
+    echo "Error: No testlist. Please specify a testlist to run."
+    exit 1
+fi
 
-prove ${*} --merge --exec '' - < ${INPUT}
+if [ "x$V" == "x1" ]; then
+    ARGS+=('-v')
+fi
+
+prove "${@}" "${ARGS[@]}" --merge --exec '' - < "${INPUT}"
This page took 0.02288 seconds and 4 git commands to generate.