diff --git a/test/h3/config.xml b/test/h3/config.xml index 1860748c2..3e6bce97e 100644 --- a/test/h3/config.xml +++ b/test/h3/config.xml @@ -79,7 +79,7 @@ 10 -1 2 - + UL4yowgK https://data.syncthing.net/newdata false 1800 diff --git a/test/scan_test.go b/test/scan_test.go index 93ed0b49c..e2ebbb6da 100644 --- a/test/scan_test.go +++ b/test/scan_test.go @@ -16,7 +16,7 @@ import ( "github.com/syncthing/syncthing/lib/rc" ) -func TestSubScan(t *testing.T) { +func TestScanSubdir(t *testing.T) { log.Println("Cleaning...") err := removeAll("s1", "s2", "h1/index*", "h2/index*") if err != nil { @@ -40,8 +40,13 @@ func TestSubScan(t *testing.T) { // Verify that the files and directories sync to the other side sender := startInstance(t, 1) defer checkedStop(t, sender) + receiver := startInstance(t, 2) defer checkedStop(t, receiver) + + sender.ResumeAll() + receiver.ResumeAll() + log.Println("Syncing...") rc.AwaitSync("default", sender, receiver) diff --git a/test/symlink_test.go b/test/symlink_test.go index 424ee8322..8dab012f4 100644 --- a/test/symlink_test.go +++ b/test/symlink_test.go @@ -158,6 +158,9 @@ func testSymlinks(t *testing.T) { receiver := startInstance(t, 2) defer checkedStop(t, receiver) + sender.ResumeAll() + receiver.ResumeAll() + log.Println("Syncing...") rc.AwaitSync("default", sender, receiver)