blob: 3a97ad9cf880873edf85c13bdde6c458c1c22d7d [file] [log] [blame]
Victor Moralesdd074802017-07-26 16:06:35 -05001#!/bin/bash
2
Victor Morales7abf1a82017-11-06 09:20:27 -08003if [[ "$debug" == "True" ]]; then
4 set -o xtrace
5fi
6
Victor Moralesdd074802017-07-26 16:06:35 -05007set -o errexit
8
9TEST_SUITE=${1:-*}
10TEST_CASE=${2:-*}
11
12for file in $( ls /var/onap_tests/test_$TEST_SUITE); do
13 bash ${file} $TEST_CASE
14done