summaryrefslogtreecommitdiff
path: root/internal/tai64n/tai64n_test.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-02-12 23:48:09 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-02-12 23:49:41 +0100
commitff8f3a412ebf3b83b2d67fdafcc3311800fd39ee (patch)
treec384d62c158874ca6ebcc25a37cf80a18c56330a /internal/tai64n/tai64n_test.go
parentea4ea6f9334b8979bec6a881d7f94d7fa94e9b9c (diff)
downloadwireguard-go-ff8f3a412ebf3b83b2d67fdafcc3311800fd39ee.tar.gz
wireguard-go-ff8f3a412ebf3b83b2d67fdafcc3311800fd39ee.zip
Use relative imports
Diffstat (limited to 'internal/tai64n/tai64n_test.go')
-rw-r--r--internal/tai64n/tai64n_test.go21
1 files changed, 0 insertions, 21 deletions
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
- }
-}