1 | /* $Id: testi.cpp 25517 2009-12-20 15:19:53Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Testcase Framework, the implicit test handle API variation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 |
|
---|
32 | /*******************************************************************************
|
---|
33 | * Header Files *
|
---|
34 | *******************************************************************************/
|
---|
35 | #include <iprt/test.h>
|
---|
36 | #include <iprt/stdarg.h>
|
---|
37 |
|
---|
38 |
|
---|
39 | RTR3DECL(int) RTTestIPrintfV(RTTESTLVL enmLevel, const char *pszFormat, va_list va)
|
---|
40 | {
|
---|
41 | return RTTestPrintfV(NIL_RTTEST, enmLevel, pszFormat, va);
|
---|
42 | }
|
---|
43 |
|
---|
44 |
|
---|
45 | RTR3DECL(int) RTTestIPrintf(RTTESTLVL enmLevel, const char *pszFormat, ...)
|
---|
46 | {
|
---|
47 | va_list va;
|
---|
48 | va_start(va, pszFormat);
|
---|
49 | int cch = RTTestPrintfV(NIL_RTTEST, enmLevel, pszFormat, va);
|
---|
50 | va_end(va);
|
---|
51 | return cch;
|
---|
52 | }
|
---|
53 |
|
---|
54 |
|
---|
55 | RTR3DECL(int) RTTestISub(const char *pszSubTest)
|
---|
56 | {
|
---|
57 | return RTTestSub(NIL_RTTEST, pszSubTest);
|
---|
58 | }
|
---|
59 |
|
---|
60 |
|
---|
61 | RTR3DECL(int) RTTestISubF(const char *pszSubTestFmt, ...)
|
---|
62 | {
|
---|
63 | va_list va;
|
---|
64 | va_start(va, pszSubTestFmt);
|
---|
65 | int cch = RTTestSubV(NIL_RTTEST, pszSubTestFmt, va);
|
---|
66 | va_end(va);
|
---|
67 | return cch;
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|
71 | RTR3DECL(int) RTTestISubV(const char *pszSubTestFmt, va_list va)
|
---|
72 | {
|
---|
73 | return RTTestSubV(NIL_RTTEST, pszSubTestFmt, va);
|
---|
74 | }
|
---|
75 |
|
---|
76 |
|
---|
77 | RTR3DECL(int) RTTestISubDone(void)
|
---|
78 | {
|
---|
79 | return RTTestSubDone(NIL_RTTEST);
|
---|
80 | }
|
---|
81 |
|
---|
82 |
|
---|
83 | RTR3DECL(int) RTTestIPassedV(const char *pszFormat, va_list va)
|
---|
84 | {
|
---|
85 | return RTTestPassedV(NIL_RTTEST, pszFormat, va);
|
---|
86 | }
|
---|
87 |
|
---|
88 |
|
---|
89 | RTR3DECL(int) RTTestIPassed(const char *pszFormat, ...)
|
---|
90 | {
|
---|
91 | va_list va;
|
---|
92 | va_start(va, pszFormat);
|
---|
93 | int cch = RTTestPassedV(NIL_RTTEST, pszFormat, va);
|
---|
94 | va_end(va);
|
---|
95 | return cch;
|
---|
96 | }
|
---|
97 |
|
---|
98 |
|
---|
99 | RTR3DECL(int) RTTestIErrorInc(void)
|
---|
100 | {
|
---|
101 | return RTTestErrorInc(NIL_RTTEST);
|
---|
102 | }
|
---|
103 |
|
---|
104 |
|
---|
105 | RTR3DECL(uint32_t) RTTestIErrorCount(void)
|
---|
106 | {
|
---|
107 | return RTTestErrorCount(NIL_RTTEST);
|
---|
108 | }
|
---|
109 |
|
---|
110 |
|
---|
111 | RTR3DECL(int) RTTestIFailedV(const char *pszFormat, va_list va)
|
---|
112 | {
|
---|
113 | return RTTestFailedV(NIL_RTTEST, pszFormat, va);
|
---|
114 | }
|
---|
115 |
|
---|
116 |
|
---|
117 | RTR3DECL(int) RTTestIFailed(const char *pszFormat, ...)
|
---|
118 | {
|
---|
119 | va_list va;
|
---|
120 | va_start(va, pszFormat);
|
---|
121 | int cch = RTTestFailedV(NIL_RTTEST, pszFormat, va);
|
---|
122 | va_end(va);
|
---|
123 | return cch;
|
---|
124 | }
|
---|
125 |
|
---|
126 |
|
---|
127 | RTR3DECL(int) RTTestIFailureDetailsV(const char *pszFormat, va_list va)
|
---|
128 | {
|
---|
129 | return RTTestFailureDetails(NIL_RTTEST, pszFormat, va);
|
---|
130 | }
|
---|
131 |
|
---|
132 |
|
---|
133 | RTR3DECL(int) RTTestIFailureDetails(const char *pszFormat, ...)
|
---|
134 | {
|
---|
135 | va_list va;
|
---|
136 | va_start(va, pszFormat);
|
---|
137 | int cch = RTTestFailureDetailsV(NIL_RTTEST, pszFormat, va);
|
---|
138 | va_end(va);
|
---|
139 | return cch;
|
---|
140 | }
|
---|
141 |
|
---|