summaryrefslogtreecommitdiff
path: root/src/bin/evil/test_evil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/evil/test_evil.c')
-rw-r--r--src/bin/evil/test_evil.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/bin/evil/test_evil.c b/src/bin/evil/test_evil.c
deleted file mode 100644
index 5b91172cb3..0000000000
--- a/src/bin/evil/test_evil.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#include <stdlib.h>
-#include <stdio.h>
-#include <sys/time.h>
-
-#include <windows.h>
-
-
-
-int
-main()
-{
- struct timeval tv;
- double t1 = 0.0;
- double t2 = 0.0;
-
- if (gettimeofday(&tv, NULL) == 0)
- t1 = tv.tv_sec + tv.tv_usec / 1000000.0;
-
- Sleep(3000);
-
- if (gettimeofday(&tv, NULL) == 0)
- t2 = tv.tv_sec + tv.tv_usec / 1000000.0;
-
- printf ("3 seconds ? %f\n", t2 - t1);
-
- return EXIT_SUCCESS;
-}