diff options
author | Mathias Hall-Andersen <mathias@hall-andersen.dk> | 2018-02-12 22:29:11 +0100 |
---|---|---|
committer | Mathias Hall-Andersen <mathias@hall-andersen.dk> | 2018-02-12 22:29:11 +0100 |
commit | ea4ea6f9334b8979bec6a881d7f94d7fa94e9b9c (patch) | |
tree | e939f1c2e4c09d871918a08e9646572e318e6cf1 /tai64n_test.go | |
parent | bffe99aeadae09abd02f2bd3184925af6b680535 (diff) |
Revert "Don't use modules"
This reverts commit bffe99aeadae09abd02f2bd3184925af6b680535.
Diffstat (limited to 'tai64n_test.go')
-rw-r--r-- | tai64n_test.go | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tai64n_test.go b/tai64n_test.go deleted file mode 100644 index a9e22b0..0000000 --- a/tai64n_test.go +++ /dev/null @@ -1,21 +0,0 @@ -package main - -import ( - "testing" - "time" -) - -/* Testing the essential property of the timestamp - * as used by WireGuard. - */ -func TestMonotonic(t *testing.T) { - old := TimestampNow() - for i := 0; i < 10000; i++ { - time.Sleep(time.Nanosecond) - next := TimestampNow() - if !next.After(old) { - t.Error("TAI64N, not monotonically increasing on nano-second scale") - } - old = next - } -} |