VirtualBox

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

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

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.0 KB
Line 
1/* $Id: tstLog.cpp 4071 2007-08-07 17:07:59Z 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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#include <iprt/log.h>
22#include <iprt/runtime.h>
23#include <iprt/err.h>
24
25#include <stdio.h>
26
27int main()
28{
29 RTR3Init();
30 printf("tstLog: Requires manual inspection of the log output!\n");
31 RTLogPrintf("%%Vrc %d: %Vrc\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
32 RTLogPrintf("%%Vrs %d: %Vrs\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
33 RTLogPrintf("%%Vrf %d: %Vrf\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
34 RTLogPrintf("%%Vra %d: %Vra\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
35
36 RTLogPrintf("%%Vt: %Vt\n");
37
38 static uint8_t au8Hex[256];
39 for (unsigned iHex = 0; iHex < sizeof(au8Hex); iHex++)
40 au8Hex[iHex] = (uint8_t)iHex;
41 RTLogPrintf("%%Vhxs : %Vhxs\n", &au8Hex[0]);
42 RTLogPrintf("%%.32Vhxs: %.32Vhxs\n", &au8Hex[0]);
43
44 RTLogPrintf("%%Vhxd :\n%Vhxd\n", &au8Hex[0]);
45 RTLogPrintf("%%.64Vhxd:\n%.64Vhxd\n", &au8Hex[0]);
46 RTLogPrintf("%%.*Vhxd:\n%.*Vhxd\n", 64, &au8Hex[0]);
47 RTLogPrintf("%%32.256Vhxd : \n%32.256Vhxd\n", &au8Hex[0]);
48 RTLogPrintf("%%32.*Vhxd : \n%32.*Vhxd\n", 256, &au8Hex[0]);
49 RTLogPrintf("%%7.32Vhxd : \n%7.32Vhxd\n", &au8Hex[0]);
50 RTLogPrintf("%%7.*Vhxd : \n%7.*Vhxd\n", 32, &au8Hex[0]);
51 RTLogPrintf("%%*.*Vhxd : \n%*.*Vhxd\n", 7, 32, &au8Hex[0]);
52
53 RTLogPrintf("%%VGp: %VGp\n", (RTGCPHYS)0x87654321);
54 RTLogPrintf("%%VGv: %VGv\n", (RTGCPTR)0x87654321);
55 RTLogPrintf("%%VHp: %VHp\n", (RTGCPHYS)0x87654321);
56 RTLogPrintf("%%VHv: %VHv\n", (RTGCPTR)0x87654321);
57
58 RTLogPrintf("%%VI8 : %VI8\n", (uint8_t)808);
59 RTLogPrintf("%%VI16: %VI16\n", (uint16_t)16016);
60 RTLogPrintf("%%VI32: %VI32\n", _1G);
61 RTLogPrintf("%%VI64: %VI64\n", _1E);
62
63 RTLogPrintf("%%VU8 : %VU8\n", (uint8_t)808);
64 RTLogPrintf("%%VU16: %VU16\n", (uint16_t)16016);
65 RTLogPrintf("%%VU32: %VU32\n", _2G32);
66 RTLogPrintf("%%VU64: %VU64\n", _2E);
67
68 RTLogPrintf("%%VX8 : %VX8 %#VX8\n", (uint8_t)808, (uint8_t)808);
69 RTLogPrintf("%%VX16: %VX16 %#VX16\n", (uint16_t)16016, (uint16_t)16016);
70 RTLogPrintf("%%VX32: %VX32 %#VX32\n", _2G32, _2G32);
71 RTLogPrintf("%%VX64: %VX64 %#VX64\n", _2E, _2E);
72
73 RTLogFlush(NULL);
74
75 return 0;
76}
77
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