From bffe99aeadae09abd02f2bd3184925af6b680535 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 12 Feb 2018 20:10:44 +0100 Subject: Don't use modules Feel free to revert this if you have a strong feeling about it. But so far as I can see, it adds a lot of complexity for basically no upsides. --- internal/tai64n/tai64n_test.go | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 internal/tai64n/tai64n_test.go (limited to 'internal/tai64n/tai64n_test.go') diff --git a/internal/tai64n/tai64n_test.go b/internal/tai64n/tai64n_test.go deleted file mode 100644 index 389b65c..0000000 --- a/internal/tai64n/tai64n_test.go +++ /dev/null @@ -1,21 +0,0 @@ -package tai64n - -import ( - "testing" - "time" -) - -/* Testing the essential property of the timestamp - * as used by WireGuard. - */ -func TestMonotonic(t *testing.T) { - old := Now() - for i := 0; i < 10000; i++ { - time.Sleep(time.Nanosecond) - next := Now() - if !next.After(old) { - t.Error("TAI64N, not monotonically increasing on nano-second scale") - } - old = next - } -} -- cgit v1.2.3