4 Vhosts setup test
[csit.git] / resources / libraries / bash / dut_setup.sh
1 #!/bin/bash
2 # Copyright (c) 2016 Cisco and/or its affiliates.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 function cmd {
16     echo "[Command_start_exec] '$1'"
17     echo -n "[Command_outputs] "
18     eval ${@}
19     echo "[Command_done_exec] '$1'"
20     echo
21 }
22
23 echo
24 echo "[Command_desc] Starting ${0}"
25
26 cmd 'dpkg -l vpp\*'
27
28 cmd 'ps aux | grep vpp'
29
30 cmd 'cat /etc/vpp/startup.conf'
31
32 cmd 'sudo -S service vpp restart'
33
34 echo "[Command_desc] SLEEP for three seconds, so that VPP is up for sure"
35 cmd 'sleep 3'
36
37 cmd 'cat /proc/meminfo'
38
39 cmd 'free -m'
40
41 cmd 'ps aux | grep vpp'
42
43 cmd 'sudo dmidecode | grep UUID'
44
45 cmd 'lspci -Dnn'
46
47 cmd 'tail -n 50 /var/log/syslog'
48
49 echo "[Command_desc] Adding dpdk-input trace"
50 cmd 'sudo vpp_api_test <<< "exec trace add dpdk-input 100"'
51
52 echo "[Command_desc] Adding vhost-user-input trace"
53 cmd 'sudo vpp_api_test <<< "exec trace add vhost-user-input 100"'