tests: reduce subsurface-test verbosity

Not printing these will drop 7980 lines or roughly 350 kB from the test
logs. Now I don't have scroll through them all, and I don't have to
watch them if I run this test manually.

These prints were useful when developing the test, but we don't need
them printed in CI all the time. Printing the final count should be
enough.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
dev
Pekka Paalanen 3 years ago
parent ecbf1dba43
commit c021e2f9eb
  1. 19
      tests/subsurface-test.c

@ -31,6 +31,8 @@
#include "weston-test-client-helper.h" #include "weston-test-client-helper.h"
#include "weston-test-fixture-compositor.h" #include "weston-test-fixture-compositor.h"
#define VERBOSE 0
static enum test_result_code static enum test_result_code
fixture_setup(struct weston_test_harness *harness) fixture_setup(struct weston_test_harness *harness)
{ {
@ -841,11 +843,13 @@ destroy_permu_object(struct wl_surface **surfs,
int h = (i + 1) / 2; int h = (i + 1) / 2;
if (i & 1) { if (i & 1) {
testlog(" [sub %2d]", h); if (VERBOSE)
testlog(" [sub %2d]", h);
wl_subsurface_destroy(subs[h]); wl_subsurface_destroy(subs[h]);
subs[h] = NULL; subs[h] = NULL;
} else { } else {
testlog(" [surf %2d]", h); if (VERBOSE)
testlog(" [surf %2d]", h);
wl_surface_destroy(surfs[h]); wl_surface_destroy(surfs[h]);
surfs[h] = NULL; surfs[h] = NULL;
} }
@ -883,15 +887,18 @@ TEST(test_subsurface_destroy_permutations)
create_subsurface_tree(client, surfs, subs, test_size); create_subsurface_tree(client, surfs, subs, test_size);
testlog("permu"); if (VERBOSE)
testlog("permu");
for (i = 0; i < NSTEPS; i++) if (VERBOSE)
testlog(" %2d", per.cnt[i]); for (i = 0; i < NSTEPS; i++)
testlog(" %2d", per.cnt[i]);
for (i = 0; i < NSTEPS; i++) for (i = 0; i < NSTEPS; i++)
destroy_permu_object(surfs, subs, per.cnt[i]); destroy_permu_object(surfs, subs, per.cnt[i]);
testlog("\n"); if (VERBOSE)
testlog("\n");
client_roundtrip(client); client_roundtrip(client);
destroy_subsurface_tree(surfs, subs, test_size); destroy_subsurface_tree(surfs, subs, test_size);

Loading…
Cancel
Save