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