all repos — tint2 @ 949fbdba14a527441b3df48ea314456de943b80b

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

949fbdba14a527441b3df48ea314456de943b80b

parent

558ffee93b488278579bea5a9d6abbd36be6385e

1 files changed, 3 insertions(+), 2 deletions(-)

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

@@ -224,7 +224,7 @@

def compile_and_report(src_dir): print("# Compilation") - cmake_flags = "-DCMAKE_BUILD_TYPE=Debug -DENABLE_ASAN=ON -DCMAKE_EXE_LINKER_FLAGS=-fuse-ld=gold" + cmake_flags = "-DCMAKE_BUILD_TYPE=Debug -DENABLE_ASAN=ON '-DCMAKE_CXX_FLAGS_DEBUG=-O0 -g3 -gdwarf-2 -fsanitize=address -fno-common -fno-omit-frame-pointer -rdynamic -Wshadow' '-DCMAKE_EXE_LINKER_FLAGS=-O0 -g3 -gdwarf-2 -fsanitize=address -fno-common -fno-omit-frame-pointer -rdynamic -fuse-ld=gold'" print("Flags:", cmake_flags) start = time.time() c = run("rm -rf build; mkdir build; cd build; cmake {0} {1} ; make -j7".format(cmake_flags, src_dir), True)

@@ -298,7 +298,7 @@ checkout(args.for_version)

args.src_dir = "./tmpclone" args.src_dir = os.path.realpath(args.src_dir) stop_xvfb() - #check_busy() + check_busy() show_timestamp() show_git_info(args.src_dir) show_system_info()

@@ -307,4 +307,5 @@ run_tests()

if __name__ == "__main__": + sys.stdout = os.fdopen(sys.stdout.fileno(), "w", 0) main()