- new helper function cancel_previous_multi() which checks for errors. - patch by Miklos Szeredi: fixes 'du' for files >= 4GB. - remove buffered writes completely and handle O_RDWR - Fix "hang" when curl_easy_perform(fh->write_conn) in the write thread fails; Detect write errors in the write thread; Synchronize writing with the new semaphore "data_written" to be able to report write errors earlier; Fix that ftpfs_truncate created empty files with no permissions set (caused problems with gedit and others) - Patch from Miklos Szeredi to support streaming writes (includes changes from Robson Braga Araujo) - Added option to use a custom command to list files. - Add ftp_method option to make it faster to browse directories. - Fix broken header dependencies. - Put the FTP server name in fsname by default. Upgraded FUSE_USE_VERSION to 26. - Disable EPSV by default because it can cause the program to hang.
15 lines
367 B
Bash
15 lines
367 B
Bash
$NetBSD: patch-tests_run__tests.sh,v 1.1 2020/04/21 13:56:26 nia Exp $
|
|
|
|
Shell portability.
|
|
|
|
--- tests/run_tests.sh.orig 2007-11-20 19:27:57.000000000 +0000
|
|
+++ tests/run_tests.sh
|
|
@@ -6,7 +6,7 @@ failed=0
|
|
for i in *_unittest; do
|
|
echo -n "$i... "
|
|
`./$i > /dev/null 2>&1`
|
|
- if [ $? == 0 ]; then
|
|
+ if [ $? = 0 ]; then
|
|
echo "PASS"
|
|
else
|
|
echo "FAILED"
|