summaryrefslogtreecommitdiff
path: root/test-runner.sh
blob: dbff65b384e723161640f62bc741f827a5206da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# Inputs
URL=$1
FILE=`basename "$URL"`
shift
BACKEND=$1
shift
TEST_FILES=$@
LOG_FILE="$FILE.test.log"

# Write log header
echo "Testing image $FILE on `date`" > "$LOG_FILE"
echo "  with test command files: $TEST_FILES" >> "$LOG_FILE"
echo "===============================================================================" >> "$LOG_FILE"

# Fetch the image
echo "Fetching image $FILE" >> "$LOG_FILE"
curl -o "$FILE" "$URL"

# Run the test
echo "Launching $BACKEND test backend" >> "$LOG_FILE"
"$BACKEND/do-tests.sh" "$FILE" $TEST_FILES >> "$LOG_FILE" 2>&1