all repos — tint2 @ ac8256a96b8780da10b7f8132fe8b906dbc62af4

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Regression tests
o9000 mrovi9000@gmail.com
commit

ac8256a96b8780da10b7f8132fe8b906dbc62af4

parent

078601643642cd4d6c11bae82a465cca82d036b3

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M test/regression.pytest/regression.py

@@ -21,7 +21,7 @@ ok = ":white_check_mark:"

warning = ":warning:" error = ":negative_squared_cross_mark:" stress_duration = 10 -repeats = 10 +repeats = 1 def print(*args, **kwargs):

@@ -176,7 +176,7 @@ exitcode = tint2.returncode

if exitcode != 0: print("tint2 crashed with exit code {0}!".format(exitcode)) print("Output:") - print("```" + out + "```") + print("```\n" + out.strip() + "\n```") return min_fps, med_fps = compute_min_med_fps(out) leaks = find_asan_leaks(out)

@@ -193,7 +193,7 @@ fps_status = ok if min_fps > 60 else warning if min_fps > 40 else error

print("FPS:", "min:", min_fps, "median:", med_fps, fps_status) if mem_status != ok or leak_status != ok or fps_status != ok: print("Output:") - print("```" + out + "```") + print("```\n" + out.strip() + "\n```") stop_xvfb()

@@ -242,7 +242,7 @@ duration = time.time() - start

if c.returncode != 0: print("Status: Failed!", error) print("Output:") - print("```" + out + "```") + print("```\n" + out.strip() + "\n```") raise RuntimeError("compilation failed") if "warning:" in out: print("Status: Succeeded with warnings!", warning)