blob: 868de13bd6f76a26e26cdd3d4c74835907c94345 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
##########################################################
##This script includes executing cyclictest scripts.
##########################################################
#The latest build packages are stored in build_output
ls -al $WORKSPACE/build_output
#start the test
cd $WORKSPACE
./ci/test_kvmfornfv.sh
|