From ec5cb9400c944f8769924a86e1fb741d2c08ba91 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 3 Nov 2025 01:51:57 +0900 Subject: [PATCH] cmd/hpkg/test: print share directory This is more useful now that state is tracked here. Signed-off-by: Ophestra --- cmd/hpkg/test/test.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cmd/hpkg/test/test.py b/cmd/hpkg/test/test.py index dcfe4e9..79d383f 100644 --- a/cmd/hpkg/test/test.py +++ b/cmd/hpkg/test/test.py @@ -102,5 +102,9 @@ machine.wait_until_fails("getfacl --absolute-names --omit-header --numeric /run/ swaymsg("exit", succeed=False) machine.wait_for_file("/tmp/sway-exit-ok") -# Print hakurei runDir contents: -print(machine.succeed("find /run/user/1000/hakurei")) \ No newline at end of file +# Print hakurei share and rundir contents: +print(machine.succeed("find /tmp/hakurei.0 " + + "-path '/tmp/hakurei.0/runtime/*/*' -prune -o " + + "-path '/tmp/hakurei.0/tmpdir/*/*' -prune -o " + + "-print")) +print(machine.succeed("find /run/user/1000/hakurei"))