VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTR0ThreadDriver.cpp@ 62571

Last change on this file since 62571 was 62477, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1/* $Id: tstRTR0ThreadDriver.cpp 62477 2016-07-22 18:27:37Z vboxsync $ */
2/** @file
3 * IPRT R0 Testcase - Kernel thread, driver program.
4 */
5
6/*
7 * Copyright (C) 2015-2016 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/initterm.h>
32
33#include <iprt/err.h>
34#include <iprt/path.h>
35#include <iprt/param.h>
36#include <iprt/stream.h>
37#include <iprt/string.h>
38#include <iprt/test.h>
39#ifdef VBOX
40# include <VBox/sup.h>
41# include "tstRTR0Thread.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("tstRTR0Thread: SKIPPED\n");
53 return RTEXITCODE_SKIPPED;
54#else
55 /*
56 * Init.
57 */
58 RTEXITCODE rcExit = RTR3TestR0CommonDriverInit("tstRTR0Thread");
59 if (rcExit != RTEXITCODE_SUCCESS)
60 return rcExit;
61
62 RTR3TestR0SimpleTest(TSTRTR0THREAD_BASIC, "Basic");
63
64 /*
65 * Done.
66 */
67 return RTTestSummaryAndDestroy(g_hTest);
68#endif
69}
70
71
72#if !defined(VBOX_WITH_HARDENING) || !defined(RT_OS_WINDOWS)
73/**
74 * Main entry point.
75 */
76int main(int argc, char **argv, char **envp)
77{
78 return TrustedMain(argc, argv, envp);
79}
80#endif
81
Note: See TracBrowser for help on using the repository browser.

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