diff options
author | mrichomme <morgan.richomme@orange.com> | 2021-09-02 14:41:31 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2021-09-03 12:06:46 +0000 |
commit | ee8669cc6b2dd8591c84dff3ccc4e2394f99fc33 (patch) | |
tree | b6bb9bb0494baf2cfaa62e7d4dc49be35a5e282c | |
parent | 1d663bd08f7f990ecd7507280abca02a5b5cec1a (diff) |
[SECURITY] Fix waiver management of check_for_nonssl_ports test
There was a nit in the bash script preventing the cfail list to
be taken into account
Issue-ID: TEST-360
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: Id8aec2b091cd00eee1c018dc529e1b38bb050275
-rwxr-xr-x | test/security/check_for_nonssl_endpoints.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/security/check_for_nonssl_endpoints.sh b/test/security/check_for_nonssl_endpoints.sh index 5a807fe10..446792dea 100755 --- a/test/security/check_for_nonssl_endpoints.sh +++ b/test/security/check_for_nonssl_endpoints.sh @@ -77,9 +77,9 @@ done echo "------------------------------------------------------------------------" # Display the waivers -if [ -s $XL_FILE_PATH ]; then +if [ -s $XF_FILE_PATH ]; then echo "-------------------- *** WARNING XFail List *** ------------------------" - cat $XL_FILE_PATH + cat $XF_FILE_PATH echo "------------------------------------------------------------------------" fi |