summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
authorFabien Catteau <fcatteau@gitlab.com>2019-06-12 15:27:49 +0000
committerOlivier Gonzalez <ogonzalez@gitlab.com>2019-06-12 15:27:49 +0000
commit738801c4253c0076183153ebba1f33dd0d2a576f (patch)
treeddcc18ee0fb2e376e770657b68c827548c9326c7 /run.sh
parentc1eff826603590c83778ff8c2e8aa018df5c0e73 (diff)
Add Python 3 project to QA
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/run.sh b/run.sh
index 7adf439..0ce0266 100755
--- a/run.sh
+++ b/run.sh
@@ -7,7 +7,7 @@ $(basename "$0") [-h]
$(basename "$0") analyze PROJECT_PATH
-$(basename "$0") test PROJECT_NAME PROJECT_REF
+$(basename "$0") test PROJECT_NAME RESULTS_NAME PROJECT_REF
where:
-h show this help text
@@ -60,7 +60,7 @@ if [ "$COMMAND" = "analyze" -a $# -ne 1 ] ; then
exit 1
fi
-if [ "$COMMAND" = "test" -a $# -ne 2 ] ; then
+if [ "$COMMAND" = "test" -a $# -ne 3 ] ; then
echo "$usage"
exit 1
fi
@@ -89,7 +89,7 @@ esac
case "$COMMAND" in
test)
# Run integration tests.
- exec /test/test.sh $1 $2
+ exec /test/test.sh $1 $2 $3
;;
analyze)