blob: db69d7d501dd88b23de8c5d5a6789132e340b929 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
set -ex
echo "[$(date "+%F %R")] Automated testing triggered." >> ../../../../trigger_log
sudo chown $USER /archive/tlsa-ciat-test-x86_64.raw
chmod 644 /archive/tlsa-ciat-test-x86_64.raw
### First you need to source the environment for openstack deployment.
### This isn't commited because it contains password, etc.
source /archive/tlsa/os.setup
### Now you can run the tester:
cd /archive
sudo mkdir -p testing
cd /archive/testing
if [ -d ciat-tester ]; then
rm -rf ciat-tester
fi
git clone ssh://git@cu010-trove.codethink.com/cu010-trove/br6/ciat-tester
cd ciat-tester
./test-runner.sh file:///archive/tlsa-ciat-test-x86_64.raw openstack tests/python.test tests/uname.test
|