VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTR0TimerDriver.cpp@ 56768

Last change on this file since 56768 was 56759, checked in by vboxsync, 10 years ago

tstRTR0Timer: windows fix

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
Line 
1/* $Id: tstRTR0TimerDriver.cpp 56759 2015-07-02 17:19:13Z vboxsync $ */
2/** @file
3 * IPRT R0 Testcase - Timers, driver program.
4 */
5
6/*
7 * Copyright (C) 2009-2015 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* Header Files *
29*******************************************************************************/
30#include <iprt/initterm.h>
31
32#include <iprt/err.h>
33#include <iprt/path.h>
34#include <iprt/param.h>
35#include <iprt/stream.h>
36#include <iprt/string.h>
37#include <iprt/test.h>
38#include <iprt/thread.h>
39#ifdef VBOX
40# include <VBox/sup.h>
41# include "tstRTR0Timer.h"
42#endif
43#include "tstRTR0CommonDriver.h"
44
45
46/**
47 * Entry point.
48 */
49extern "C" DECLEXPORT(int) TrustedMain(int argc, char **argv, char **envp)
50{
51#ifndef VBOX
52 RTPrintf("tstRTR0Timer: SKIPPED\n");
53 return RTEXITCODE_SKIPPED;
54#else
55 /*
56 * Init.
57 */
58 RTEXITCODE rcExit = RTR3TestR0CommonDriverInit("tstRTR0Timer");
59 if (rcExit != RTEXITCODE_SUCCESS)
60 return rcExit;
61
62 if (argc == 2 && !strcmp(argv[1], "latency"))
63 {
64 RTR3TestR0SimpleTest(TSTRTR0TIMER_LATENCY_OMNI, "Latency omni timer");
65 RTR3TestR0SimpleTest(TSTRTR0TIMER_LATENCY_OMNI_HIRES, "Latency omni hires timer");
66 }
67 else
68 {
69# if 1
70 /*
71 * Standard timers.
72 */
73 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_BASIC, "Basic one shot");
74 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_BASIC, "Basic periodic");
75 if (RTTestErrorCount(g_hTest) == 0)
76 {
77# if 1
78# if !defined(RT_OS_SOLARIS) && !defined(RT_OS_WINDOWS)
79 /* Solaris cannot call back into cyclic subsystem from a cyclic callback. */
80 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_RESTART, "Restart one shot from callback");
81 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_DESTROY, "Destroy one shot from callback");
82# endif
83 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_CSSD_LOOPS, "Create-start-stop-destroy loops");
84 for (uint32_t i = 0; i <= 7; i++)
85 RTR3TestR0SimpleTestWithArg(TSTRTR0TIMER_PERIODIC_CHANGE_INTERVAL, i, "Change interval from callback, variation %u", i);
86# endif
87 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_SPECIFIC, "One shot cpu specific");
88 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_SPECIFIC, "Periodic cpu specific");
89 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_OMNI, "Periodic omni timer");
90 }
91# endif
92
93# if 1
94 /*
95 * High resolution timers.
96 */
97 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_BASIC_HIRES, "Basic hires one shot");
98 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_BASIC_HIRES, "Basic hires periodic");
99 if (RTTestErrorCount(g_hTest) == 0)
100 {
101# if 1
102# if !defined(RT_OS_SOLARIS) && !defined(RT_OS_WINDOWS)
103 /* Solaris cannot call back into cyclic subsystem from a cyclic callback. */
104 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_RESTART_HIRES, "Restart hires one shot from callback");
105 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_DESTROY_HIRES, "Destroy hires one shot from callback");
106# endif
107 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_CSSD_LOOPS_HIRES, "Create-start-stop-destroy loops, hires");
108 for (uint32_t i = 0; i <= 7; i++)
109 RTR3TestR0SimpleTestWithArg(TSTRTR0TIMER_PERIODIC_CHANGE_INTERVAL, i, "Change interval from callback, hires, variation %u", i);
110# endif
111 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_SPECIFIC_HIRES, "One shot hires cpu specific");
112 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_SPECIFIC_HIRES, "Periodic hires cpu specific");
113 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_OMNI, "Periodic omni hires timer");
114 }
115# endif
116 }
117
118 /*
119 * Done.
120 */
121 return RTTestSummaryAndDestroy(g_hTest);
122#endif
123}
124
125
126#if !defined(VBOX_WITH_HARDENING) || !defined(RT_OS_WINDOWS)
127/**
128 * Main entry point.
129 */
130int main(int argc, char **argv, char **envp)
131{
132 return TrustedMain(argc, argv, envp);
133}
134#endif
135
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette