Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
integration
/
e62aae6b5d079c5175441686d49364b71741f6d9
/
.
/
bootstrap
/
vagrant-onap
/
vagrant_utils
/
unit_testing.sh
blob: 3a97ad9cf880873edf85c13bdde6c458c1c22d7d [
file
] [
log
] [
blame
]
#!/bin/bash
if
[[
"$debug"
==
"True"
]];
then
set
-
o xtrace
fi
set
-
o errexit
TEST_SUITE
=
$
{
1
:-*}
TEST_CASE
=
$
{
2
:-*}
for
file
in
$
(
ls
/
var
/
onap_tests
/
test_$TEST_SUITE
);
do
bash $
{
file
}
$TEST_CASE
done