VirtualBox

source: vbox/trunk/src/bldprogs/test-gccplugin-2.c@ 74795

Last change on this file since 74795 was 70558, checked in by vboxsync, 6 years ago

gccplugin: Added testcase for missing 's' bug - need to validate format types.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1/* $Id: test-gccplugin-2.c 70558 2018-01-12 14:11:39Z vboxsync $ */
2/** @file
3 * Compiler plugin testcase \#2.
4 */
5
6/*
7 * Copyright (C) 2010-2017 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
18/* Only valid stuff in this one. */
19extern void MyIprtPrintf(const char *pszFormat, ...) __attribute__((__iprt_format__(1,2)));
20extern void foo(const char *pszFormat, ...);
21
22extern unsigned long long g_ull;
23
24typedef unsigned long long RTGCPHYS;
25extern RTGCPHYS g_GCPhys;
26
27typedef RTGCPHYS *PRTGCPHYS;
28extern PRTGCPHYS g_pGCPhys;
29
30#include <stdarg.h>
31
32void foo(const char *pszFormat, ...)
33{
34 MyIprtPrintf("%s %RX64 %RGp %p %RGp", "foobar", g_ull, g_GCPhys, g_pGCPhys, *g_pGCPhys);
35 MyIprtPrintf("%RX32 %d %s\n", 10, 42, "string");
36 MyIprtPrintf("%u %.8Rhxs %d\n", 10, &g_ull, 42);
37 MyIprtPrintf("%u %.8RhxD %d\n", 10, &g_ull, 42);
38 {
39 va_list va;
40 int iValue;
41 va_start(va, pszFormat);
42 iValue = va_arg(va, int);
43 va_end(va);
44 MyIprtPrintf("%u\n", iValue);
45 }
46}
47
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use