aboutsummaryrefslogtreecommitdiffstats
path: root/ci/apexlake-verify
blob: 81c532babdde23873bab2bc4755d79528b851d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
##############################################################################
# Copyright (c) 2015 Ericsson AB and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

DPDK_HOST=10.118.36.130

YARDSTICK=/home/user/yardstick
TESTSUITE=$YARDSTICK/tests/opnfv/test_suites/opnfv_vTC_daily.yaml

commands="
cd $YARDSTICK
source /home/user/openrc.dasm
sudo -E yardstick task start --suite $TESTSUITE"

echo "$commands" | ssh -l user $DPDK_HOST 'bash -s'
exit $?