1 | /* $Id: tstTime.cpp 5456 2007-10-24 01:04:51Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime Testcase - Simple RTTime tests.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*******************************************************************************
|
---|
19 | * Header Files *
|
---|
20 | *******************************************************************************/
|
---|
21 | #include <iprt/time.h>
|
---|
22 | #include <iprt/stream.h>
|
---|
23 | #include <iprt/initterm.h>
|
---|
24 | #include <iprt/thread.h>
|
---|
25 | #include <VBox/sup.h>
|
---|
26 |
|
---|
27 |
|
---|
28 | int main()
|
---|
29 | {
|
---|
30 | unsigned cErrors = 0;
|
---|
31 | int i;
|
---|
32 | RTR3Init();
|
---|
33 | RTPrintf("tstTime: TESTING...\n");
|
---|
34 |
|
---|
35 | /*
|
---|
36 | * RTNanoTimeTS() shall never return something which
|
---|
37 | * is less or equal to the return of the previous call.
|
---|
38 | */
|
---|
39 |
|
---|
40 | RTTimeSystemNanoTS(); RTTimeNanoTS(); RTThreadYield();
|
---|
41 | uint64_t u64RTStartTS = RTTimeNanoTS();
|
---|
42 | uint64_t u64OSStartTS = RTTimeSystemNanoTS();
|
---|
43 |
|
---|
44 | uint64_t u64Prev = RTTimeNanoTS();
|
---|
45 | for (i = 0; i < 100*_1M; i++)
|
---|
46 | {
|
---|
47 | uint64_t u64 = RTTimeNanoTS();
|
---|
48 | if (u64 <= u64Prev)
|
---|
49 | {
|
---|
50 | /** @todo wrapping detection. */
|
---|
51 | RTPrintf("tstTime: error: i=%#010x u64=%#llx u64Prev=%#llx (1)\n", i, u64, u64Prev);
|
---|
52 | cErrors++;
|
---|
53 | RTThreadYield();
|
---|
54 | u64 = RTTimeNanoTS();
|
---|
55 | }
|
---|
56 | else if (u64 - u64Prev > 1000000000 /* 1sec */)
|
---|
57 | {
|
---|
58 | RTPrintf("tstTime: error: i=%#010x u64=%#llx u64Prev=%#llx delta=%lld\n", i, u64, u64Prev, u64 - u64Prev);
|
---|
59 | cErrors++;
|
---|
60 | RTThreadYield();
|
---|
61 | u64 = RTTimeNanoTS();
|
---|
62 | }
|
---|
63 | if (!(i & (_1M*2 - 1)))
|
---|
64 | {
|
---|
65 | RTPrintf("tstTime: i=%#010x u64=%#llx u64Prev=%#llx delta=%lld\n", i, u64, u64Prev, u64 - u64Prev);
|
---|
66 | RTThreadYield();
|
---|
67 | u64 = RTTimeNanoTS();
|
---|
68 | }
|
---|
69 | u64Prev = u64;
|
---|
70 | }
|
---|
71 |
|
---|
72 | RTTimeSystemNanoTS(); RTTimeNanoTS(); RTThreadYield();
|
---|
73 | uint64_t u64RTElapsedTS = RTTimeNanoTS();
|
---|
74 | uint64_t u64OSElapsedTS = RTTimeSystemNanoTS();
|
---|
75 | u64RTElapsedTS -= u64RTStartTS;
|
---|
76 | u64OSElapsedTS -= u64OSStartTS;
|
---|
77 | int64_t i64Diff = u64OSElapsedTS >= u64RTElapsedTS ? u64OSElapsedTS - u64RTElapsedTS : u64RTElapsedTS - u64OSElapsedTS;
|
---|
78 | if (i64Diff > (int64_t)(u64OSElapsedTS / 1000))
|
---|
79 | {
|
---|
80 | RTPrintf("tstTime: error: total time differs too much! u64OSElapsedTS=%#llx u64RTElapsedTS=%#llx delta=%lld\n",
|
---|
81 | u64OSElapsedTS, u64RTElapsedTS, u64OSElapsedTS - u64RTElapsedTS);
|
---|
82 | cErrors++;
|
---|
83 | }
|
---|
84 | else
|
---|
85 | RTPrintf("tstTime: total time difference: u64OSElapsedTS=%#llx u64RTElapsedTS=%#llx delta=%lld\n",
|
---|
86 | u64OSElapsedTS, u64RTElapsedTS, u64OSElapsedTS - u64RTElapsedTS);
|
---|
87 |
|
---|
88 | RTPrintf("RTTimeDbgSteps -> %u (%d ppt)\n", RTTimeDbgSteps(), ((uint64_t)RTTimeDbgSteps() * 1000) / i);
|
---|
89 | RTPrintf("RTTimeDbgExpired -> %u (%d ppt)\n", RTTimeDbgExpired(), ((uint64_t)RTTimeDbgExpired() * 1000) / i);
|
---|
90 | RTPrintf("RTTimeDbgBad -> %u (%d ppt)\n", RTTimeDbgBad(), ((uint64_t)RTTimeDbgBad() * 1000) / i);
|
---|
91 | RTPrintf("RTTimeDbgRaces -> %u (%d ppt)\n", RTTimeDbgRaces(), ((uint64_t)RTTimeDbgRaces() * 1000) / i);
|
---|
92 | if (!cErrors)
|
---|
93 | RTPrintf("tstTime: SUCCESS\n");
|
---|
94 | else
|
---|
95 | RTPrintf("tstTime: FAILURE - %d errors\n", cErrors);
|
---|
96 | return !!cErrors;
|
---|
97 | }
|
---|