VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstErrUnique.cpp@ 19948

Last change on this file since 19948 was 14831, checked in by vboxsync, 16 years ago

whole bunch: avoid runtime.h, include individual headers indead.

  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1/* $Id: tstErrUnique.cpp 14831 2008-11-30 10:31:16Z vboxsync $ */
2/** @file
3 * IPRT 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/initterm.h>
39#include <VBox/err.h>
40
41
42/*******************************************************************************
43* Global Variables *
44*******************************************************************************/
45/** Array of messages.
46 * The data is generated by a sed script.
47 */
48static const RTSTATUSMSG g_aErrorMessages[] =
49{
50#include "errmsgdata.h"
51};
52
53
54static bool strIsPermissibleDuplicate(const RTSTATUSMSG *msg)
55{
56 const char *pszMsgShort = msg->pszMsgShort;
57 const char *pszDefine = msg->pszDefine;
58 size_t cbDefine = strlen(pszDefine);
59
60 return (strstr(pszMsgShort, "(mapped to") != 0)
61 || (strstr(pszDefine, "FIRST") == pszDefine + (cbDefine - 5))
62 || (strstr(pszDefine, "LAST") == pszDefine + (cbDefine - 4));
63}
64
65
66int main()
67{
68 int cErrors = 0;
69 RTR3Init();
70 RTPrintf("tstErrUnique: TESTING\n");
71
72 for (uint32_t i = 0; i < RT_ELEMENTS(g_aErrorMessages) - 1; i++)
73 {
74 if (strIsPermissibleDuplicate(&g_aErrorMessages[i]))
75 continue;
76
77 for (uint32_t j = i + 1; j < RT_ELEMENTS(g_aErrorMessages); j++)
78 {
79 if (strIsPermissibleDuplicate(&g_aErrorMessages[j]))
80 continue;
81
82 if (g_aErrorMessages[i].iCode == g_aErrorMessages[j].iCode)
83 {
84 RTPrintf("tstErrUnique: status code %d can mean '%s' or '%s'\n", g_aErrorMessages[i].iCode, g_aErrorMessages[i].pszMsgShort, g_aErrorMessages[j]);
85 cErrors++;
86 }
87 }
88 }
89
90 /*
91 * Summary
92 */
93 if (cErrors == 0)
94 RTPrintf("tstErrUnique: SUCCESS\n");
95 else
96 RTPrintf("tstErrUnique: FAILURE - %d errors\n", cErrors);
97 return !!cErrors;
98}
99
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