From 09d09c7326f459adfb9a9c98d60b829abb1929a2 Mon Sep 17 00:00:00 2001 From: Adrian Ho Date: Tue, 29 Jun 2021 23:52:08 +0800 Subject: [PATCH] test-fuse: don't try to run the example binaries --- cmd/brew-test-fuse | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/brew-test-fuse b/cmd/brew-test-fuse index 04e1abc..5f702ad 100755 --- a/cmd/brew-test-fuse +++ b/cmd/brew-test-fuse @@ -29,5 +29,4 @@ for u in "${examples[@]}"; do # Build it Homebrew-style f=${u##*/}; p=${f%.c} cmd clang -D_FILE_OFFSET_BITS=64 -I/usr/local/include/fuse -L/usr/local/lib -g -O2 -Wall -o "$p" "$f" -lfuse -lpthread - cmd ./"$p" "$tmpdir"/test_mount done