VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/testi.cpp@ 19924

Last change on this file since 19924 was 18847, checked in by vboxsync, 16 years ago

RTTest: Added alternative API that's easier to use.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: testi.cpp 18847 2009-04-08 16:22:27Z 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
39RTR3DECL(int) RTTestIPrintfV(RTTESTLVL enmLevel, const char *pszFormat, va_list va)
40{
41 return RTTestPrintfV(NIL_RTTEST, enmLevel, pszFormat, va);
42}
43
44
45RTR3DECL(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
55RTR3DECL(int) RTTestIPassedV(const char *pszFormat, va_list va)
56{
57 return RTTestPassedV(NIL_RTTEST, pszFormat, va);
58}
59
60
61RTR3DECL(int) RTTestIPassed(const char *pszFormat, ...)
62{
63 va_list va;
64 va_start(va, pszFormat);
65 int cch = RTTestPassedV(NIL_RTTEST, pszFormat, va);
66 va_end(va);
67 return cch;
68}
69
70
71RTR3DECL(int) RTTestIErrorInc(void)
72{
73 return RTTestErrorInc(NIL_RTTEST);
74}
75
76
77RTR3DECL(int) RTTestIFailedV(const char *pszFormat, va_list va)
78{
79 return RTTestFailedV(NIL_RTTEST, pszFormat, va);
80}
81
82
83RTR3DECL(int) RTTestIFailed(const char *pszFormat, ...)
84{
85 va_list va;
86 va_start(va, pszFormat);
87 int cch = RTTestFailedV(NIL_RTTEST, pszFormat, va);
88 va_end(va);
89 return cch;
90}
91
92
93RTR3DECL(int) RTTestIFailureDetailsV(const char *pszFormat, va_list va)
94{
95 return RTTestFailureDetails(NIL_RTTEST, pszFormat, va);
96}
97
98
99RTR3DECL(int) RTTestIFailureDetails(const char *pszFormat, ...)
100{
101 va_list va;
102 va_start(va, pszFormat);
103 int cch = RTTestFailureDetailsV(NIL_RTTEST, pszFormat, va);
104 va_end(va);
105 return cch;
106}
107
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