blob: 63cbec69b4dece69aab3d3a45293b6042eebd594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/bash
set -e
echo "$(date --rfc-3339=seconds) $(basename $0) started with '$*'"
source $(dirname $0)/lib.sh
if [[ "$UID" == "0" ]]
then
echo "$(basename $0): Error: Expected to be running as a regular user"
exit 1
fi
TESTSUITE=${1?Missing TESTSUITE argument (arg1)}
LOCAL_OR_REMOTE=${2?Missing LOCAL_OR_REMOTE argument (arg2)}
# Ensure environment setup correctly
req_env_var GOSRC ROOTLESS_USER
echo "."
echo "Hello, my name is $USER and I live in $PWD can I be your friend?"
echo "."
show_env_vars
set -x
cd "$GOSRC"
make
make varlink_generate
make test-binaries
make ${LOCAL_OR_REMOTE}${TESTSUITE}
|