aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2025-08-03 22:53:14 +0200
committerJakob Unterwurzacher2025-08-03 22:58:30 +0200
commitb0be67e54a288c6d3f5ac73c9888ed5a5bc4e38f (patch)
tree4a2726a7e867eba89e903b84c10741dade54ffb4
parentdad4c9fc77f3c5c05396259ef0990c1b338344da (diff)
-rw-r--r--.github/workflows/macos.yml1
-rw-r--r--tests/test_helpers/mount_unmount.go2
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index cdddd25..292b040 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -23,6 +23,7 @@ jobs:
- name: Install macfuse
run: |
sudo /opt/local/bin/port install macfuse +fs_link
+ sudo /usr/bin/kmutil load -p /Library/Filesystems/macfuse.fs/Contents/Extensions/15/macfuse.kext
- uses: actions/checkout@v4
with:
diff --git a/tests/test_helpers/mount_unmount.go b/tests/test_helpers/mount_unmount.go
index 277c8d8..fdb9eb8 100644
--- a/tests/test_helpers/mount_unmount.go
+++ b/tests/test_helpers/mount_unmount.go
@@ -97,7 +97,7 @@ func Mount(c string, p string, showOutput bool, extraArgs ...string) error {
case <-time.After(2 * time.Second):
fmt.Printf("Timeout, sending SIGQUIT and SIGKILL")
cmd.Process.Signal(syscall.SIGQUIT)
- // SIGQUIT should trigger a backtrace. Give it some time to print it.
+ // SIGQUIT should trigger a backtrace. Give it some time to print
time.Sleep(time.Second)
cmd.Process.Kill()
log.Panicf("Timeout waiting for process %d", pid)