mirror of
https://github.com/rclone/rclone.git
synced 2025-08-14 07:49:00 +02:00
fs: fix filename normalization issues in the tests when running on OS X
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
package fs_test
|
||||
|
||||
import (
|
||||
"runtime"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
@ -965,6 +966,10 @@ func TestSyncBackupDirWithSuffix(t *testing.T) { testSyncBackupDir(t, ".bak") }
|
||||
|
||||
// Check we can sync two files with differing UTF-8 representations
|
||||
func TestSyncUTFNorm(t *testing.T) {
|
||||
if runtime.GOOS == "darwin" {
|
||||
t.Skip("Can't test UTF normalization on OS X")
|
||||
}
|
||||
|
||||
r := NewRun(t)
|
||||
defer r.Finalise()
|
||||
|
||||
|
Reference in New Issue
Block a user