summary refs log tree commit diff stats
path: root/tests/stdlib/tcputime.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tcputime.nim')
-rw-r--r--tests/stdlib/tcputime.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/stdlib/tcputime.nim b/tests/stdlib/tcputime.nim
deleted file mode 100644
index b0cc19c6c..000000000
--- a/tests/stdlib/tcputime.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-import times, os
-
-var e = epochTime()
-var c = cpuTime()
-
-os.sleep(1000)
-
-e = epochTime() - e
-c = cpuTime() - c
-
-echo "epochTime: ", e, " cpuTime: ", c