Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b83789fd
Commit
b83789fd
authored
Oct 24, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated some of the generated tests.
parent
2f31228d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
43 deletions
+40
-43
generated.c
dlls/gdi/tests/generated.c
+8
-8
generated.c
dlls/shlwapi/tests/generated.c
+8
-9
generated.c
dlls/urlmon/tests/generated.c
+8
-9
generated.c
dlls/user/tests/generated.c
+8
-8
generated.c
dlls/wininet/tests/generated.c
+8
-9
No files found.
dlls/gdi/tests/generated.c
View file @
b83789fd
...
...
@@ -27,7 +27,7 @@
* Windows API extension
*/
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define FIELD_ALIGNMENT(type, field) __alignof(((type*)0)->field)
#elif defined(__GNUC__)
# define FIELD_ALIGNMENT(type, field) __alignof__(((type*)0)->field)
...
...
@@ -35,7 +35,7 @@
/* FIXME: Not sure if is possible to do without compiler extension */
#endif
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define _TYPE_ALIGNMENT(type) __alignof(type)
#elif defined(__GNUC__)
# define _TYPE_ALIGNMENT(type) __alignof__(type)
...
...
@@ -58,7 +58,7 @@
#ifdef FIELD_ALIGNMENT
# define TEST_FIELD_ALIGNMENT(type, field, align) \
ok(FIELD_ALIGNMENT(type, field) == align, \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")", \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")
\n
", \
FIELD_ALIGNMENT(type, field))
#else
# define TEST_FIELD_ALIGNMENT(type, field, align) do { } while (0)
...
...
@@ -66,7 +66,7 @@
#define TEST_FIELD_OFFSET(type, field, offset) \
ok(FIELD_OFFSET(type, field) == offset, \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")", \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")
\n
", \
FIELD_OFFSET(type, field))
#ifdef _TYPE_ALIGNMENT
...
...
@@ -78,13 +78,13 @@
#ifdef TYPE_ALIGNMENT
#define TEST_TYPE_ALIGNMENT(type, align) \
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")", TYPE_ALIGNMENT(type))
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")
\n
", TYPE_ALIGNMENT(type))
#else
# define TEST_TYPE_ALIGNMENT(type, align) do { } while (0)
#endif
#define TEST_TYPE_SIZE(type, size) \
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")", sizeof(type))
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")
\n
", sizeof(type))
/***********************************************************************
* Test macros
...
...
@@ -104,10 +104,10 @@
TEST_TYPE_SIZE(*(type)0, size)
#define TEST_TYPE_SIGNED(type) \
ok((type) -1 < 0, "(" #type ") -1 < 0");
ok((type) -1 < 0, "(" #type ") -1 < 0
\n
");
#define TEST_TYPE_UNSIGNED(type) \
ok((type) -1 > 0, "(" #type ") -1 > 0");
ok((type) -1 > 0, "(" #type ") -1 > 0
\n
");
static
void
test_pack_ABC
(
void
)
{
...
...
dlls/shlwapi/tests/generated.c
View file @
b83789fd
...
...
@@ -12,7 +12,6 @@
#define WINE_NOWINSOCK
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wtypes.h"
...
...
@@ -33,7 +32,7 @@
* Windows API extension
*/
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define FIELD_ALIGNMENT(type, field) __alignof(((type*)0)->field)
#elif defined(__GNUC__)
# define FIELD_ALIGNMENT(type, field) __alignof__(((type*)0)->field)
...
...
@@ -41,7 +40,7 @@
/* FIXME: Not sure if is possible to do without compiler extension */
#endif
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define _TYPE_ALIGNMENT(type) __alignof(type)
#elif defined(__GNUC__)
# define _TYPE_ALIGNMENT(type) __alignof__(type)
...
...
@@ -64,7 +63,7 @@
#ifdef FIELD_ALIGNMENT
# define TEST_FIELD_ALIGNMENT(type, field, align) \
ok(FIELD_ALIGNMENT(type, field) == align, \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")", \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")
\n
", \
FIELD_ALIGNMENT(type, field))
#else
# define TEST_FIELD_ALIGNMENT(type, field, align) do { } while (0)
...
...
@@ -72,7 +71,7 @@
#define TEST_FIELD_OFFSET(type, field, offset) \
ok(FIELD_OFFSET(type, field) == offset, \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")", \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")
\n
", \
FIELD_OFFSET(type, field))
#ifdef _TYPE_ALIGNMENT
...
...
@@ -84,13 +83,13 @@
#ifdef TYPE_ALIGNMENT
#define TEST_TYPE_ALIGNMENT(type, align) \
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")", TYPE_ALIGNMENT(type))
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")
\n
", TYPE_ALIGNMENT(type))
#else
# define TEST_TYPE_ALIGNMENT(type, align) do { } while (0)
#endif
#define TEST_TYPE_SIZE(type, size) \
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")", sizeof(type))
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")
\n
", sizeof(type))
/***********************************************************************
* Test macros
...
...
@@ -110,10 +109,10 @@
TEST_TYPE_SIZE(*(type)0, size)
#define TEST_TYPE_SIGNED(type) \
ok((type) -1 < 0, "(" #type ") -1 < 0");
ok((type) -1 < 0, "(" #type ") -1 < 0
\n
");
#define TEST_TYPE_UNSIGNED(type) \
ok((type) -1 > 0, "(" #type ") -1 > 0");
ok((type) -1 > 0, "(" #type ") -1 > 0
\n
");
static
void
test_pack_DLLGETVERSIONPROC
(
void
)
{
...
...
dlls/urlmon/tests/generated.c
View file @
b83789fd
...
...
@@ -12,7 +12,6 @@
#define WINE_NOWINSOCK
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "urlmon.h"
...
...
@@ -31,7 +30,7 @@
* Windows API extension
*/
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define FIELD_ALIGNMENT(type, field) __alignof(((type*)0)->field)
#elif defined(__GNUC__)
# define FIELD_ALIGNMENT(type, field) __alignof__(((type*)0)->field)
...
...
@@ -39,7 +38,7 @@
/* FIXME: Not sure if is possible to do without compiler extension */
#endif
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define _TYPE_ALIGNMENT(type) __alignof(type)
#elif defined(__GNUC__)
# define _TYPE_ALIGNMENT(type) __alignof__(type)
...
...
@@ -62,7 +61,7 @@
#ifdef FIELD_ALIGNMENT
# define TEST_FIELD_ALIGNMENT(type, field, align) \
ok(FIELD_ALIGNMENT(type, field) == align, \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")", \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")
\n
", \
FIELD_ALIGNMENT(type, field))
#else
# define TEST_FIELD_ALIGNMENT(type, field, align) do { } while (0)
...
...
@@ -70,7 +69,7 @@
#define TEST_FIELD_OFFSET(type, field, offset) \
ok(FIELD_OFFSET(type, field) == offset, \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")", \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")
\n
", \
FIELD_OFFSET(type, field))
#ifdef _TYPE_ALIGNMENT
...
...
@@ -82,13 +81,13 @@
#ifdef TYPE_ALIGNMENT
#define TEST_TYPE_ALIGNMENT(type, align) \
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")", TYPE_ALIGNMENT(type))
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")
\n
", TYPE_ALIGNMENT(type))
#else
# define TEST_TYPE_ALIGNMENT(type, align) do { } while (0)
#endif
#define TEST_TYPE_SIZE(type, size) \
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")", sizeof(type))
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")
\n
", sizeof(type))
/***********************************************************************
* Test macros
...
...
@@ -108,10 +107,10 @@
TEST_TYPE_SIZE(*(type)0, size)
#define TEST_TYPE_SIGNED(type) \
ok((type) -1 < 0, "(" #type ") -1 < 0");
ok((type) -1 < 0, "(" #type ") -1 < 0
\n
");
#define TEST_TYPE_UNSIGNED(type) \
ok((type) -1 > 0, "(" #type ") -1 > 0");
ok((type) -1 > 0, "(" #type ") -1 > 0
\n
");
static
void
test_pack_BINDINFO
(
void
)
{
...
...
dlls/user/tests/generated.c
View file @
b83789fd
...
...
@@ -27,7 +27,7 @@
* Windows API extension
*/
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define FIELD_ALIGNMENT(type, field) __alignof(((type*)0)->field)
#elif defined(__GNUC__)
# define FIELD_ALIGNMENT(type, field) __alignof__(((type*)0)->field)
...
...
@@ -35,7 +35,7 @@
/* FIXME: Not sure if is possible to do without compiler extension */
#endif
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define _TYPE_ALIGNMENT(type) __alignof(type)
#elif defined(__GNUC__)
# define _TYPE_ALIGNMENT(type) __alignof__(type)
...
...
@@ -58,7 +58,7 @@
#ifdef FIELD_ALIGNMENT
# define TEST_FIELD_ALIGNMENT(type, field, align) \
ok(FIELD_ALIGNMENT(type, field) == align, \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")", \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")
\n
", \
FIELD_ALIGNMENT(type, field))
#else
# define TEST_FIELD_ALIGNMENT(type, field, align) do { } while (0)
...
...
@@ -66,7 +66,7 @@
#define TEST_FIELD_OFFSET(type, field, offset) \
ok(FIELD_OFFSET(type, field) == offset, \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")", \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")
\n
", \
FIELD_OFFSET(type, field))
#ifdef _TYPE_ALIGNMENT
...
...
@@ -78,13 +78,13 @@
#ifdef TYPE_ALIGNMENT
#define TEST_TYPE_ALIGNMENT(type, align) \
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")", TYPE_ALIGNMENT(type))
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")
\n
", TYPE_ALIGNMENT(type))
#else
# define TEST_TYPE_ALIGNMENT(type, align) do { } while (0)
#endif
#define TEST_TYPE_SIZE(type, size) \
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")", sizeof(type))
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")
\n
", sizeof(type))
/***********************************************************************
* Test macros
...
...
@@ -104,10 +104,10 @@
TEST_TYPE_SIZE(*(type)0, size)
#define TEST_TYPE_SIGNED(type) \
ok((type) -1 < 0, "(" #type ") -1 < 0");
ok((type) -1 < 0, "(" #type ") -1 < 0
\n
");
#define TEST_TYPE_UNSIGNED(type) \
ok((type) -1 > 0, "(" #type ") -1 > 0");
ok((type) -1 > 0, "(" #type ") -1 > 0
\n
");
static
void
test_pack_ACCEL
(
void
)
{
...
...
dlls/wininet/tests/generated.c
View file @
b83789fd
...
...
@@ -12,7 +12,6 @@
#define WINE_NOWINSOCK
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wininet.h"
...
...
@@ -31,7 +30,7 @@
* Windows API extension
*/
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define FIELD_ALIGNMENT(type, field) __alignof(((type*)0)->field)
#elif defined(__GNUC__)
# define FIELD_ALIGNMENT(type, field) __alignof__(((type*)0)->field)
...
...
@@ -39,7 +38,7 @@
/* FIXME: Not sure if is possible to do without compiler extension */
#endif
#if (_MSC_VER >= 1300) && defined(__cplusplus)
#if
defined(_MSC_VER) &&
(_MSC_VER >= 1300) && defined(__cplusplus)
# define _TYPE_ALIGNMENT(type) __alignof(type)
#elif defined(__GNUC__)
# define _TYPE_ALIGNMENT(type) __alignof__(type)
...
...
@@ -62,7 +61,7 @@
#ifdef FIELD_ALIGNMENT
# define TEST_FIELD_ALIGNMENT(type, field, align) \
ok(FIELD_ALIGNMENT(type, field) == align, \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")", \
"FIELD_ALIGNMENT(" #type ", " #field ") == %d (expected " #align ")
\n
", \
FIELD_ALIGNMENT(type, field))
#else
# define TEST_FIELD_ALIGNMENT(type, field, align) do { } while (0)
...
...
@@ -70,7 +69,7 @@
#define TEST_FIELD_OFFSET(type, field, offset) \
ok(FIELD_OFFSET(type, field) == offset, \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")", \
"FIELD_OFFSET(" #type ", " #field ") == %ld (expected " #offset ")
\n
", \
FIELD_OFFSET(type, field))
#ifdef _TYPE_ALIGNMENT
...
...
@@ -82,13 +81,13 @@
#ifdef TYPE_ALIGNMENT
#define TEST_TYPE_ALIGNMENT(type, align) \
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")", TYPE_ALIGNMENT(type))
ok(TYPE_ALIGNMENT(type) == align, "TYPE_ALIGNMENT(" #type ") == %d (expected " #align ")
\n
", TYPE_ALIGNMENT(type))
#else
# define TEST_TYPE_ALIGNMENT(type, align) do { } while (0)
#endif
#define TEST_TYPE_SIZE(type, size) \
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")", sizeof(type))
ok(sizeof(type) == size, "sizeof(" #type ") == %d (expected " #size ")
\n
", sizeof(type))
/***********************************************************************
* Test macros
...
...
@@ -108,10 +107,10 @@
TEST_TYPE_SIZE(*(type)0, size)
#define TEST_TYPE_SIGNED(type) \
ok((type) -1 < 0, "(" #type ") -1 < 0");
ok((type) -1 < 0, "(" #type ") -1 < 0
\n
");
#define TEST_TYPE_UNSIGNED(type) \
ok((type) -1 > 0, "(" #type ") -1 > 0");
ok((type) -1 > 0, "(" #type ") -1 > 0
\n
");
static
void
test_pack_GOPHER_FIND_DATAA
(
void
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment