hs-test: check for missing output in nginx tests
Type: test Signed-off-by: Maros Ondrejicka <mondreji@cisco.com> Change-Id: I08cd492fff4b9d50a1761a29c2b231cc8544313b
This commit is contained in:

committed by
Florin Coras

parent
edd28a4102
commit
2ddb2fdaaf
@ -5,6 +5,18 @@ if [ $(lsb_release -is) != Ubuntu ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z $(which ab) ]; then
|
||||
echo "Host stack test framework requires apache2-utils to be installed"
|
||||
echo "It is recommended to run 'sudo make install-dep'"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z $(which wrk) ]; then
|
||||
echo "Host stack test framework requires wrk to be installed"
|
||||
echo "It is recommended to run 'sudo make install-dep'"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
source vars
|
||||
|
||||
bin=vpp-data/bin
|
||||
|
Reference in New Issue
Block a user