]> xenbits.xensource.com Git - people/aperard/xtf.git/commitdiff
Introduce an 'in-development' category for tests which don't want automating yet
authorAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 11 May 2017 15:54:44 +0000 (16:54 +0100)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 11 May 2017 15:55:45 +0000 (16:55 +0100)
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
build/common.mk
docs/introduction.dox
xtf-runner

index 4b8aed0b51930800920a8ea9bdf2f39d7875769d..c26a7cd2532d4d938fe018b25ca65a3c3b884586 100644 (file)
@@ -1,4 +1,4 @@
-ALL_CATEGORIES     := special functional xsa utility
+ALL_CATEGORIES     := special functional xsa utility in-development
 
 ALL_ENVIRONMENTS   := pv64 pv32pae hvm64 hvm32pae hvm32pse hvm32
 
index 341702e65d662bb15a53bee663823d27ec96264f..9207941dc28e38171c576bc67552d22e7bf23e78 100644 (file)
@@ -30,6 +30,8 @@ categories are:
 - `utility` are not really tests, but exist to dump specific information about
   the VM environment.
 - `special` covers the example and environment sanity checks.
+- `in-development` covers tests which aren't yet complete, and are not ready
+  to be run automatically yet.
 
 
 @subsection attr-envs Environments
index c7431dd91ebea18417210c2604d5b5e1d96f69a0..d4105151e63eafff34bc2f19371461f3ec517194 100755 (executable)
@@ -33,7 +33,7 @@ def exit_code(state):
 
 # All test categories
 default_categories     = set(("functional", "xsa"))
-non_default_categories = set(("special", "utility"))
+non_default_categories = set(("special", "utility", "in-development"))
 all_categories         = default_categories | non_default_categories
 
 # All test environments