* [PATCH] cec-compliance: recognize PRESUMED_OK and REFUSED as ok
@ 2016-08-26 8:31 Johan Fjeldtvedt
0 siblings, 0 replies; only message in thread
From: Johan Fjeldtvedt @ 2016-08-26 8:31 UTC (permalink / raw)
To: linux-media; +Cc: Johan Fjeldtvedt
It is only checked for PRESUMED_OK and REFUSED when performing remote
tests, but these test result codes are also used elsewhere, so checking
for them is moved to the ok function.
Signed-off-by: Johan Fjeldtvedt <jaffe1@gmail.com>
---
utils/cec-compliance/cec-compliance.cpp | 9 +++++++--
utils/cec-compliance/cec-test.cpp | 4 ----
2 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/utils/cec-compliance/cec-compliance.cpp b/utils/cec-compliance/cec-compliance.cpp
index 519c572..ccfa3ba 100644
--- a/utils/cec-compliance/cec-compliance.cpp
+++ b/utils/cec-compliance/cec-compliance.cpp
@@ -842,9 +842,14 @@ const char *ok(int res)
if (res == NOTSUPPORTED) {
strcpy(buf, "OK (Not Supported)");
res = 0;
- } else {
+ } else if (res == PRESUMED_OK) {
+ strcpy(buf, "OK (Presumed)");
+ res = 0;
+ } else if (res == REFUSED) {
+ strcpy(buf, "OK (Refused)");
+ res = 0;
+ } else
strcpy(buf, "OK");
- }
tests_total++;
if (res) {
app_result = res;
diff --git a/utils/cec-compliance/cec-test.cpp b/utils/cec-compliance/cec-test.cpp
index 5fac04a..07ba4b6 100644
--- a/utils/cec-compliance/cec-test.cpp
+++ b/utils/cec-compliance/cec-test.cpp
@@ -1479,10 +1479,6 @@ void testRemote(struct node *node, unsigned me, unsigned la, unsigned test_tags,
printf("\t %s: OK (Unexpected)\n",
tests[i].subtests[j].name);
}
- else if (ret == PRESUMED_OK)
- printf("\t %s: OK (Presumed)\n", tests[i].subtests[j].name);
- else if (ret == REFUSED)
- printf("\t %s: OK (Refused)\n", tests[i].subtests[j].name);
else if (ret != NOTAPPLICABLE)
printf("\t %s: %s\n", tests[i].subtests[j].name, ok(ret));
if (ret == FAIL_CRITICAL)
--
2.7.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-08-26 8:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-26 8:31 [PATCH] cec-compliance: recognize PRESUMED_OK and REFUSED as ok Johan Fjeldtvedt
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.