1 | /* $Id: tstTime-2.cpp 93435 2022-01-24 22:30:58Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - Simple RTTime test.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 Oracle Corporation
|
---|
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 (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include <iprt/time.h>
|
---|
32 | #include <iprt/stream.h>
|
---|
33 | #include <iprt/initterm.h>
|
---|
34 | #include <iprt/thread.h>
|
---|
35 | #include <VBox/sup.h>
|
---|
36 |
|
---|
37 |
|
---|
38 | /* HACK ALERT! */
|
---|
39 | #if defined(RT_OS_DARWIN) && defined(RT_ARCH_ARM64)
|
---|
40 | # undef RTTimeNanoTSWorkerName
|
---|
41 | # define RTTimeNanoTSWorkerName() "system"
|
---|
42 | #endif
|
---|
43 |
|
---|
44 |
|
---|
45 | int main()
|
---|
46 | {
|
---|
47 | unsigned cErrors = 0;
|
---|
48 | int i;
|
---|
49 | RTR3InitExeNoArguments(RTR3INIT_FLAGS_SUPLIB);
|
---|
50 | RTPrintf("tstTime-2: TESTING...\n");
|
---|
51 |
|
---|
52 | /*
|
---|
53 | * RTNanoTimeTS() shall never return something which
|
---|
54 | * is less or equal to the return of the previous call.
|
---|
55 | */
|
---|
56 |
|
---|
57 | RTTimeSystemNanoTS(); RTTimeNanoTS(); RTThreadYield();
|
---|
58 | uint64_t u64RTStartTS = RTTimeNanoTS();
|
---|
59 | uint64_t u64OSStartTS = RTTimeSystemNanoTS();
|
---|
60 | #define NUMBER_OF_CALLS (100*_1M)
|
---|
61 |
|
---|
62 | for (i = 0; i < NUMBER_OF_CALLS; i++)
|
---|
63 | RTTimeNanoTS();
|
---|
64 |
|
---|
65 | uint64_t u64RTElapsedTS = RTTimeNanoTS();
|
---|
66 | uint64_t u64OSElapsedTS = RTTimeSystemNanoTS();
|
---|
67 | u64RTElapsedTS -= u64RTStartTS;
|
---|
68 | u64OSElapsedTS -= u64OSStartTS;
|
---|
69 | int64_t i64Diff = u64OSElapsedTS >= u64RTElapsedTS ? u64OSElapsedTS - u64RTElapsedTS : u64RTElapsedTS - u64OSElapsedTS;
|
---|
70 | if (i64Diff > (int64_t)(u64OSElapsedTS / 1000))
|
---|
71 | {
|
---|
72 | RTPrintf("tstTime-2: error: total time differs too much! u64OSElapsedTS=%#llx u64RTElapsedTS=%#llx delta=%lld\n",
|
---|
73 | u64OSElapsedTS, u64RTElapsedTS, u64OSElapsedTS - u64RTElapsedTS);
|
---|
74 | cErrors++;
|
---|
75 | }
|
---|
76 | else
|
---|
77 | RTPrintf("tstTime-2: total time difference: u64OSElapsedTS=%#llx u64RTElapsedTS=%#llx delta=%lld\n",
|
---|
78 | u64OSElapsedTS, u64RTElapsedTS, u64OSElapsedTS - u64RTElapsedTS);
|
---|
79 |
|
---|
80 | RTPrintf("tstTime-2: %'u calls to RTTimeNanoTS in %'lluns -> %'llu calls/sec (%s)\n",
|
---|
81 | NUMBER_OF_CALLS, u64RTElapsedTS, (uint64_t)(NUMBER_OF_CALLS / ((double)u64RTElapsedTS / RT_NS_1SEC)), RTTimeNanoTSWorkerName());
|
---|
82 | #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) /** @todo This isn't really x86 or AMD64 specific... */
|
---|
83 | RTPrintf("tstTime-2: RTTimeDbgSteps -> %u (%d ppt)\n", RTTimeDbgSteps(), ((uint64_t)RTTimeDbgSteps() * 1000) / NUMBER_OF_CALLS);
|
---|
84 | RTPrintf("tstTime-2: RTTimeDbgExpired -> %u (%d ppt)\n", RTTimeDbgExpired(), ((uint64_t)RTTimeDbgExpired() * 1000) / NUMBER_OF_CALLS);
|
---|
85 | RTPrintf("tstTime-2: RTTimeDbgBad -> %u (%d ppt)\n", RTTimeDbgBad(), ((uint64_t)RTTimeDbgBad() * 1000) / NUMBER_OF_CALLS);
|
---|
86 | RTPrintf("tstTime-2: RTTimeDbgRaces -> %u (%d ppt)\n", RTTimeDbgRaces(), ((uint64_t)RTTimeDbgRaces() * 1000) / NUMBER_OF_CALLS);
|
---|
87 | #endif
|
---|
88 |
|
---|
89 | if (!cErrors)
|
---|
90 | RTPrintf("tstTime-2: SUCCESS\n");
|
---|
91 | else
|
---|
92 | RTPrintf("tstTime-2: FAILURE - %d errors\n", cErrors);
|
---|
93 | return !!cErrors;
|
---|
94 | }
|
---|