allowed BLOCK result for testkit-merger 14/31714/1 accepted/tizen_3.0_common accepted/tizen_3.0_ivi accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_wearable tizen tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0.2015.q2_common tizen_3.0.m2 tizen_3.0_ivi accepted/tizen/3.0/common/20161114.112416 accepted/tizen/common/20141208.171357 accepted/tizen/ivi/20141218.014557 accepted/tizen/mobile/20141216.073958 accepted/tizen/tv/20141210.132802 accepted/tizen/wearable/20141210.195110 submit/tizen/20141208.164217 submit/tizen_3.0_common/20161104.104000 tizen_3.0_ivi_release
authorNicolas Zingilé <nicolas.zingile@open.eurogiciel.org>
Mon, 8 Dec 2014 16:40:43 +0000 (17:40 +0100)
committerNicolas Zingilé <nicolas.zingile@open.eurogiciel.org>
Mon, 8 Dec 2014 16:40:43 +0000 (17:40 +0100)
Change-Id: I32c82088ce698c2bbc59cc13580819524a352751
Signed-off-by: Nicolas Zingilé <nicolas.zingile@open.eurogiciel.org>
testkitmerge/merger.py

index 3870151..36705eb 100644 (file)
@@ -201,7 +201,7 @@ def check_testcase(eltcase):
     try:
        result = eltcase.get("result")
        actual_result = eltcase.find("./result_info/actual_result").text
-       allowed_results = ["PASS", "FAIL", "N/A"]
+       allowed_results = ["PASS", "FAIL", "N/A", "BLOCK"]
     except AttributeError:
        raise ElementError("result of the testcase is not valid !")
     if result not in allowed_results or result != actual_result: