From 2e6836708e809c8a85a6eae337cc106ea3142b32 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Wed, 12 Aug 2015 02:34:02 +0000 Subject: [PATCH] Increased the slop in memfs_test. --- samples/memfs/memfs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/memfs/memfs_test.go b/samples/memfs/memfs_test.go index b1f5181..8ef5544 100644 --- a/samples/memfs/memfs_test.go +++ b/samples/memfs/memfs_test.go @@ -38,7 +38,7 @@ func TestMemFS(t *testing.T) { RunTests(t) } // The radius we use for "expect mtime is within"-style assertions. We can't // share a synchronized clock with the ultimate source of mtimes because with // writeback caching enabled the kernel manufactures them based on wall time. -const timeSlop = 5 * time.Millisecond +const timeSlop = 25 * time.Millisecond //////////////////////////////////////////////////////////////////////// // Helpers