0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2025-01-06 22:40:31 -05:00

tls: Improve flaky test depending on CPU scheduling (I think)

This commit is contained in:
Matthew Holt 2016-11-28 23:37:22 -07:00
parent 36f8759a7b
commit 80eb45fcfb
No known key found for this signature in database
GPG key ID: 2A349DD577D586A5

View file

@ -166,12 +166,12 @@ func TestGetEmail(t *testing.T) {
t.Fatalf("Error saving user %d: %v", i, err)
}
// Change modified time so they're all different, so the test becomes deterministic
// Change modified time so they're all different and the test becomes more deterministic
f, err := os.Stat(testStorage.user(eml))
if err != nil {
t.Fatalf("Could not access user folder for '%s': %v", eml, err)
}
chTime := f.ModTime().Add(-(time.Duration(i) * time.Second))
chTime := f.ModTime().Add(-(time.Duration(i) * time.Hour)) // 1 second isn't always enough space!
if err := os.Chtimes(testStorage.user(eml), chTime, chTime); err != nil {
t.Fatalf("Could not change user folder mod time for '%s': %v", eml, err)
}