Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
3 | source /var/onap_tests/_test_base | ||||
4 | source /var/onap/vfc | ||||
5 | |||||
6 | covered_functions=( | ||||
7 | "clone_all_vfc_repos" | ||||
8 | ) | ||||
9 | |||||
10 | # test_clone_all_vfc_repos() - Verify cloning and pulling source code from repositories | ||||
11 | function test_clone_all_vfc_repos { | ||||
12 | # TODO(sshank) | ||||
13 | echo "" | ||||
14 | } | ||||
15 | |||||
16 | if [ "$1" != '*' ]; then | ||||
17 | unset covered_functions | ||||
18 | covered_functions=$1 | ||||
19 | fi | ||||
20 | main "${covered_functions[@]}" |