aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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"))