summary refs log tree commit diff stats
path: root/tests/misc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc')
-rw-r--r--tests/misc/tgetstartmilsecs.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/misc/tgetstartmilsecs.nim b/tests/misc/tgetstartmilsecs.nim
deleted file mode 100644
index 98eb6ca08..000000000
--- a/tests/misc/tgetstartmilsecs.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-discard """
-disabled: "appveyor"
-"""
-
-# diabled on appveyor, because it fails there.
-
-import times, os
-
-var start = epochTime()
-os.sleep(1000)
-let diff = abs(epochTime() - start - 1.0)
-doAssert diff < 0.005, $diff