Exclude dot1q in the default tag array 18/15018/2
authorVratko Polak <vrpolak@cisco.com>
Thu, 27 Sep 2018 13:31:19 +0000 (15:31 +0200)
committerPeter Mikus <pmikus@cisco.com>
Thu, 27 Sep 2018 15:34:33 +0000 (15:34 +0000)
Mainly useful to reduce test set for per patch.

Change-Id: I55a5f2d268c3105ac32d25ae317e149d3c3b4e14
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
resources/libraries/bash/function/common.sh

index 0202fbe..bc8ffe9 100644 (file)
@@ -425,12 +425,12 @@ function select_tags () {
         * )
             if [[ -z "${TEST_TAG_STRING-}" ]]; then
                 # If nothing is specified, we will run pre-selected tests by
-                # following tags. Items of array will be concatenated by OR
-                # in Robot Framework.
+                # following tags.
                 test_tag_array=("mrrANDnic_intel-x710AND1cAND64bANDip4base"
                                 "mrrANDnic_intel-x710AND1cAND78bANDip6base"
-                                "mrrANDnic_intel-x710AND1cAND64bANDl2bdbaseANDbase"
-                                "mrrANDnic_intel-x710AND1cAND64bANDl2xcbase")
+                                "mrrANDnic_intel-x710AND1cAND64bANDl2bdbase"
+                                "mrrANDnic_intel-x710AND1cAND64bANDl2xcbase"
+                                "!dot1q")
             else
                 # If trigger contains tags, split them into array.
                 test_tag_array=(${TEST_TAG_STRING//:/ })