aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-11-03 01:51:57 +0900
committerOphestra <cat@gensokyo.uk>2025-11-03 01:51:57 +0900
commitec5cb9400c944f8769924a86e1fb741d2c08ba91 (patch)
tree0c13d950d984760bcd2f31bd94624172dd7d01f1
parentae66b3d2fb2f1f65f6ca8932e8044114e609d0b4 (diff)
cmd/hpkg/test: print share directory
This is more useful now that state is tracked here. Signed-off-by: Ophestra <cat@gensokyo.uk>
-rw-r--r--cmd/hpkg/test/test.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/cmd/hpkg/test/test.py b/cmd/hpkg/test/test.py
index dcfe4e90..79d383ff 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"))