mirror of https://github.com/xemu-project/xemu.git
tests/qtest/npcm7xx_pwm-test: Be less verbose unless V=2
The npcm7xx_pwm-test produces a lot of output at V=1, which means that on our CI tests the log files exceed the gitlab 500KB limit. Suppress the messages about exactly what is being tested unless at V=2 and above. This follows the pattern we use with qom-test. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20230209135047.1753081-1-peter.maydell@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
bb9ecae70b
commit
77034bbc12
|
@ -20,6 +20,8 @@
|
|||
#include "qapi/qmp/qdict.h"
|
||||
#include "qapi/qmp/qnum.h"
|
||||
|
||||
static int verbosity_level;
|
||||
|
||||
#define REF_HZ 25000000
|
||||
|
||||
/* Register field definitions. */
|
||||
|
@ -221,7 +223,9 @@ static uint64_t pwm_qom_get(QTestState *qts, const char *path, const char *name)
|
|||
QDict *response;
|
||||
uint64_t val;
|
||||
|
||||
g_test_message("Getting properties %s from %s", name, path);
|
||||
if (verbosity_level >= 2) {
|
||||
g_test_message("Getting properties %s from %s", name, path);
|
||||
}
|
||||
response = qtest_qmp(qts, "{ 'execute': 'qom-get',"
|
||||
" 'arguments': { 'path': %s, 'property': %s}}",
|
||||
path, name);
|
||||
|
@ -260,8 +264,10 @@ static void mft_qom_set(QTestState *qts, int index, const char *name,
|
|||
QDict *response;
|
||||
char *path = g_strdup_printf("/machine/soc/mft[%d]", index);
|
||||
|
||||
g_test_message("Setting properties %s of mft[%d] with value %u",
|
||||
name, index, value);
|
||||
if (verbosity_level >= 2) {
|
||||
g_test_message("Setting properties %s of mft[%d] with value %u",
|
||||
name, index, value);
|
||||
}
|
||||
response = qtest_qmp(qts, "{ 'execute': 'qom-set',"
|
||||
" 'arguments': { 'path': %s, "
|
||||
" 'property': %s, 'value': %u}}",
|
||||
|
@ -506,9 +512,12 @@ static void mft_verify_rpm(QTestState *qts, const TestData *td, uint64_t duty)
|
|||
int32_t expected_cnt = mft_compute_cnt(rpm, clk);
|
||||
|
||||
qtest_irq_intercept_in(qts, "/machine/soc/a9mpcore/gic");
|
||||
g_test_message(
|
||||
"verifying rpm for mft[%d]: clk: %" PRIu64 ", duty: %" PRIu64 ", rpm: %u, cnt: %d",
|
||||
index, clk, duty, rpm, expected_cnt);
|
||||
if (verbosity_level >= 2) {
|
||||
g_test_message(
|
||||
"verifying rpm for mft[%d]: clk: %" PRIu64 ", duty: %" PRIu64
|
||||
", rpm: %u, cnt: %d",
|
||||
index, clk, duty, rpm, expected_cnt);
|
||||
}
|
||||
|
||||
/* Verify rpm for fan A */
|
||||
/* Stop capture */
|
||||
|
@ -670,6 +679,12 @@ int main(int argc, char **argv)
|
|||
{
|
||||
TestData test_data_list[ARRAY_SIZE(pwm_module_list) * ARRAY_SIZE(pwm_list)];
|
||||
|
||||
char *v_env = getenv("V");
|
||||
|
||||
if (v_env) {
|
||||
verbosity_level = atoi(v_env);
|
||||
}
|
||||
|
||||
g_test_init(&argc, &argv, NULL);
|
||||
|
||||
for (int i = 0; i < ARRAY_SIZE(pwm_module_list); ++i) {
|
||||
|
|
Loading…
Reference in New Issue