mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
ucrtbase/tests: Properly use quotes.
Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
74b50e27e1
commit
a004e31ff0
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
#define CHECK_EXPECT2(func) \
|
#define CHECK_EXPECT2(func) \
|
||||||
do { \
|
do { \
|
||||||
ok(expect_ ##func, "unexpected call " #func "\n"); \
|
ok(expect_ ##func, "unexpected call " #func "\n"); \
|
||||||
called_ ## func = TRUE; \
|
called_ ## func = TRUE; \
|
||||||
}while(0)
|
}while(0)
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
#define CHECK_CALLED(func) \
|
#define CHECK_CALLED(func) \
|
||||||
do { \
|
do { \
|
||||||
ok(called_ ## func, "expected " #func "\n"); \
|
ok(called_ ## func, "expected " #func "\n"); \
|
||||||
expect_ ## func = called_ ## func = FALSE; \
|
expect_ ## func = called_ ## func = FALSE; \
|
||||||
}while(0)
|
}while(0)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue