This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: Revert "cec-compliance: change long timeout to 30s" Author: Hans Verkuil <hverk...@xs4all.nl> Date: Wed Jan 22 13:37:43 2025 +0100 This reverts commit 791da13728d964fd981535789e763f2df8261e50. I thought 30 seconds should be enough, but for some tests this is too short. Go back to 60 seconds. utils/cec-compliance/cec-compliance.1.in | 2 +- utils/cec-compliance/cec-compliance.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=8fb667bc4ec202529799cca28fff5b69d34cee19 diff --git a/utils/cec-compliance/cec-compliance.1.in b/utils/cec-compliance/cec-compliance.1.in index e255e215d815..f212d88f43bd 100644 --- a/utils/cec-compliance/cec-compliance.1.in +++ b/utils/cec-compliance/cec-compliance.1.in @@ -158,7 +158,7 @@ Interactive mode when doing remote tests. Warn if replies take longer than this threshold (default 1000ms). .TP \fB\-t\fR, \fB\-\-timeout\fR \fI<secs>\fR -Set the standby/resume timeout to the given number of seconds. Default is 30s. +Set the standby/resume timeout to the given number of seconds. Default is 60s. .TP \fB\-A\fR, \fB\-\-test\-adapter\fR Test the CEC adapter API diff --git a/utils/cec-compliance/cec-compliance.cpp b/utils/cec-compliance/cec-compliance.cpp index 358858733a13..cd78740065e6 100644 --- a/utils/cec-compliance/cec-compliance.cpp +++ b/utils/cec-compliance/cec-compliance.cpp @@ -103,7 +103,7 @@ bool exit_on_fail; bool exit_on_warn; unsigned warnings; unsigned reply_threshold = 1000; -time_t long_timeout = 30; +time_t long_timeout = 60; static struct option long_options[] = { {"device", required_argument, nullptr, OptSetDevice}, @@ -187,7 +187,7 @@ static void usage() " -R, --reply-threshold <timeout>\n" " Warn if replies take longer than this threshold (default 1000ms)\n" " -i, --interactive Interactive mode when doing remote tests\n" - " -t, --timeout <secs> Set the standby/resume timeout to <secs>. Default is 30s.\n" + " -t, --timeout <secs> Set the standby/resume timeout to <secs>. Default is 60s.\n" "\n" " -A, --test-adapter Test the CEC adapter API\n" " -F, --test-fuzzing Test by fuzzing CEC messages\n"