VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstLog.cpp@ 5999

Last change on this file since 5999 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1/* $Id: tstLog.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime Testcase - Log Formatting.
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* Header Files *
29*******************************************************************************/
30#include <iprt/log.h>
31#include <iprt/runtime.h>
32#include <iprt/err.h>
33
34#include <stdio.h>
35
36int main()
37{
38 RTR3Init();
39 printf("tstLog: Requires manual inspection of the log output!\n");
40 RTLogPrintf("%%Vrc %d: %Vrc\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
41 RTLogPrintf("%%Vrs %d: %Vrs\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
42 RTLogPrintf("%%Vrf %d: %Vrf\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
43 RTLogPrintf("%%Vra %d: %Vra\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
44
45 RTLogPrintf("%%Vt: %Vt\n");
46
47 static uint8_t au8Hex[256];
48 for (unsigned iHex = 0; iHex < sizeof(au8Hex); iHex++)
49 au8Hex[iHex] = (uint8_t)iHex;
50 RTLogPrintf("%%Vhxs : %Vhxs\n", &au8Hex[0]);
51 RTLogPrintf("%%.32Vhxs: %.32Vhxs\n", &au8Hex[0]);
52
53 RTLogPrintf("%%Vhxd :\n%Vhxd\n", &au8Hex[0]);
54 RTLogPrintf("%%.64Vhxd:\n%.64Vhxd\n", &au8Hex[0]);
55 RTLogPrintf("%%.*Vhxd:\n%.*Vhxd\n", 64, &au8Hex[0]);
56 RTLogPrintf("%%32.256Vhxd : \n%32.256Vhxd\n", &au8Hex[0]);
57 RTLogPrintf("%%32.*Vhxd : \n%32.*Vhxd\n", 256, &au8Hex[0]);
58 RTLogPrintf("%%7.32Vhxd : \n%7.32Vhxd\n", &au8Hex[0]);
59 RTLogPrintf("%%7.*Vhxd : \n%7.*Vhxd\n", 32, &au8Hex[0]);
60 RTLogPrintf("%%*.*Vhxd : \n%*.*Vhxd\n", 7, 32, &au8Hex[0]);
61
62 RTLogPrintf("%%VGp: %VGp\n", (RTGCPHYS)0x87654321);
63 RTLogPrintf("%%VGv: %VGv\n", (RTGCPTR)0x87654321);
64 RTLogPrintf("%%VHp: %VHp\n", (RTGCPHYS)0x87654321);
65 RTLogPrintf("%%VHv: %VHv\n", (RTGCPTR)0x87654321);
66
67 RTLogPrintf("%%VI8 : %VI8\n", (uint8_t)808);
68 RTLogPrintf("%%VI16: %VI16\n", (uint16_t)16016);
69 RTLogPrintf("%%VI32: %VI32\n", _1G);
70 RTLogPrintf("%%VI64: %VI64\n", _1E);
71
72 RTLogPrintf("%%VU8 : %VU8\n", (uint8_t)808);
73 RTLogPrintf("%%VU16: %VU16\n", (uint16_t)16016);
74 RTLogPrintf("%%VU32: %VU32\n", _2G32);
75 RTLogPrintf("%%VU64: %VU64\n", _2E);
76
77 RTLogPrintf("%%VX8 : %VX8 %#VX8\n", (uint8_t)808, (uint8_t)808);
78 RTLogPrintf("%%VX16: %VX16 %#VX16\n", (uint16_t)16016, (uint16_t)16016);
79 RTLogPrintf("%%VX32: %VX32 %#VX32\n", _2G32, _2G32);
80 RTLogPrintf("%%VX64: %VX64 %#VX64\n", _2E, _2E);
81
82 RTLogFlush(NULL);
83
84 return 0;
85}
86
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