aboutsummaryrefslogtreecommitdiff
path: root/t/travis.sh
blob: 5db4dbd1082aa387052f7de4cc4b30c83f79962f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# Set up tests to run under Travis
set -e
set -x

PERL=`which perl`
run() {
	sudo $PERL -I"SBO-Lib/lib" "$@"
}

run sboconfig -V 14.1
run sbosnap fetch

echo "Not actually testing anything. Just verifying travis runs this."
exit 0