diff options
| author | Filip Wandzio <contact@philw.dev> | 2026-01-14 00:21:47 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2026-01-14 00:21:47 +0100 |
| commit | a89a4c9273807320484ebd30075a5f58b71ba2cd (patch) | |
| tree | e8ec5fb16226505a4fbe221e836d5cae3fbca50c /TESTING.md | |
| parent | 10e09252e99335d4d084f3a92dffb9367da14bea (diff) | |
| download | dwm-master.tar.gz dwm-master.zip | |
Create sketch for manual testing
Disable redundant functions
The following functions: movemouse, resizemouse, togglefloating, sendmon, pop, quit and zoom shall be removed. Specific windows (loading screens, notifications) will remain floating but there is no need in a window manager for manually toggling the floating behavior. Killing the session is no longer possible via keybinding. Insted I suggested adding a keybinding for reseting dwm and switching to TTY if it fails after all.
Diffstat (limited to 'TESTING.md')
| -rw-r--r-- | TESTING.md | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/TESTING.md b/TESTING.md new file mode 100644 index 0000000..376d43c --- /dev/null +++ b/TESTING.md | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | # Manual testing | ||
| 2 | |||
| 3 | ## Basic | ||
| 4 | |||
| 5 | ```make clean install``` completes without errors e.g | ||
| 6 | |||
| 7 | ``` | ||
| 8 | rm -f dwm src/core/dwm.o src/drw/drw.o src/util/util.o | ||
| 9 | clang -c -std=c23 -pedantic -Wall -Wno-deprecated-declarations -Os -I/usr/X11R6/include -I/usr/include/freetype2 -I./src -I./src/drw -I./src/util -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"\" -DXINERAMA -o src/core/dwm.o src/core/dwm.c | ||
| 10 | clang -c -std=c23 -pedantic -Wall -Wno-deprecated-declarations -Os -I/usr/X11R6/include -I/usr/include/freetype2 -I./src -I./src/drw -I./src/util -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"\" -DXINERAMA -o src/drw/drw.o src/drw/drw.c | ||
| 11 | clang -c -std=c23 -pedantic -Wall -Wno-deprecated-declarations -Os -I/usr/X11R6/include -I/usr/include/freetype2 -I./src -I./src/drw -I./src/util -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"\" -DXINERAMA -o src/util/util.o src/util/util.c | ||
| 12 | clang -o dwm src/core/dwm.o src/drw/drw.o src/util/util.o -L/usr/X11R6/lib -lX11 -lXinerama -lfontconfig -lXft -lX11-xcb -lxcb -lxcb-res | ||
| 13 | mkdir -p /usr/local/bin | ||
| 14 | cp -f dwm /usr/local/bin | ||
| 15 | chmod 755 /usr/local/bin/dwm | ||
| 16 | mkdir -p /usr/local/share/man/man1 | ||
| 17 | sed "s/VERSION//g" < assets/dwm.1 > /usr/local/share/man/man1/dwm.1 | ||
| 18 | chmod 644 /usr/local/share/man/man1/dwm.1 | ||
| 19 | ``` | ||
| 20 | |||
| 21 | No errors in stdout/stderr on startup | ||
| 22 | |||
| 23 | ## Keys | ||
| 24 | |||
| 25 | Default terminal launches `Super+Enter` | ||
| 26 | |||
| 27 | dwm restarts after `Super + r` | ||
| 28 | |||
| 29 | ## Multi-monitor | ||
| 30 | |||
| 31 | xrandr on dsub, hdmi, dp + built-in screen | ||
| 32 | |||
| 33 | ## GUI Tools | ||
| 34 | |||
| 35 | swallowing, floating etc. | ||
| 36 | |||
| 37 | polkit permissions | ||
| 38 | |||
| 39 | ## A/V | ||
| 40 | pipewire in the browser, recording audio, matrix calls etc. | ||
