1 | /* $Id: tstErrUnique.cpp 8155 2008-04-18 15:16:47Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime Testcase - Error Messages.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 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/err.h>
|
---|
36 | #include <iprt/string.h>
|
---|
37 | #include <iprt/stream.h>
|
---|
38 | #include <iprt/runtime.h>
|
---|
39 | #include <VBox/err.h>
|
---|
40 |
|
---|
41 |
|
---|
42 | /******************************************************************************** Global Variables ********************************************************************************//** Array of messages.
|
---|
43 | * The data is generated by a sed script.
|
---|
44 | */
|
---|
45 | static const RTSTATUSMSG g_aErrorMessages[] =
|
---|
46 | {
|
---|
47 | #include "errmsgdata.h"
|
---|
48 | };
|
---|
49 |
|
---|
50 | static bool strIsPermissibleDuplicate(const RTSTATUSMSG *msg)
|
---|
51 | {
|
---|
52 | const char *pszMsgShort = msg->pszMsgShort;
|
---|
53 | const char *pszDefine = msg->pszDefine;
|
---|
54 | size_t cbDefine = strlen(pszDefine);
|
---|
55 |
|
---|
56 | return (strstr(pszMsgShort, "(mapped to") != 0)
|
---|
57 | || (strstr(pszDefine, "FIRST") == pszDefine + (cbDefine - 5))
|
---|
58 | || (strstr(pszDefine, "LAST") == pszDefine + (cbDefine - 4));
|
---|
59 | }
|
---|
60 |
|
---|
61 |
|
---|
62 | int main()
|
---|
63 | {
|
---|
64 | int cErrors = 0;
|
---|
65 | RTPrintf("tstErrUnique: TESTING\n");
|
---|
66 | RTR3Init();
|
---|
67 |
|
---|
68 | for (uint32_t i = 0; i < ELEMENTS(g_aErrorMessages) - 1; i++)
|
---|
69 | {
|
---|
70 | if (strIsPermissibleDuplicate(&g_aErrorMessages[i]))
|
---|
71 | continue;
|
---|
72 |
|
---|
73 | for (uint32_t j = i + 1; j < ELEMENTS(g_aErrorMessages); j++)
|
---|
74 | {
|
---|
75 | if (strIsPermissibleDuplicate(&g_aErrorMessages[j]))
|
---|
76 | continue;
|
---|
77 |
|
---|
78 | if (g_aErrorMessages[i].iCode == g_aErrorMessages[j].iCode)
|
---|
79 | {
|
---|
80 | RTPrintf("tstErrUnique: status code %d can mean '%s' or '%s'\n", g_aErrorMessages[i].iCode, g_aErrorMessages[i].pszMsgShort, g_aErrorMessages[j]);
|
---|
81 | cErrors++;
|
---|
82 | }
|
---|
83 | }
|
---|
84 | }
|
---|
85 |
|
---|
86 | /*
|
---|
87 | * Summary
|
---|
88 | */
|
---|
89 | if (cErrors == 0)
|
---|
90 | RTPrintf("tstErrUnique: SUCCESS\n");
|
---|
91 | else
|
---|
92 | RTPrintf("tstErrUnique: FAILURE - %d errors\n", cErrors);
|
---|
93 | return !!cErrors;
|
---|
94 | }
|
---|
95 |
|
---|