VirtualBox

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

Last change on this file since 29250 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
1/* $Id: tstErrUnique.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * IPRT Testcase - Error Messages.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Oracle Corporation
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/initterm.h>
35#include <VBox/err.h>
36
37
38/*******************************************************************************
39* Global Variables *
40*******************************************************************************/
41/** Array of messages.
42 * The data is generated by a sed script.
43 */
44static const RTSTATUSMSG g_aErrorMessages[] =
45{
46#include "errmsgdata.h"
47};
48
49
50static 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
62int main()
63{
64 int cErrors = 0;
65 RTR3Init();
66 RTPrintf("tstErrUnique: TESTING\n");
67
68 for (uint32_t i = 0; i < RT_ELEMENTS(g_aErrorMessages) - 1; i++)
69 {
70 if (strIsPermissibleDuplicate(&g_aErrorMessages[i]))
71 continue;
72
73 for (uint32_t j = i + 1; j < RT_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
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