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
80a74873
Commit
80a74873
authored
Dec 26, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scrrun/tests: Add a helper to construct test file path.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
86597db8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
25 deletions
+15
-25
filesystem.c
dlls/scrrun/tests/filesystem.c
+15
-25
No files found.
dlls/scrrun/tests/filesystem.c
View file @
80a74873
...
...
@@ -46,6 +46,7 @@ static inline ULONG get_refcount(IUnknown *iface)
static
const
WCHAR
crlfW
[]
=
{
'\r'
,
'\n'
,
0
};
static
const
char
utf16bom
[]
=
{
0xff
,
0xfe
,
0
};
static
const
WCHAR
testfileW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'.'
,
't'
,
'x'
,
't'
,
0
};
#define GET_REFCOUNT(iface) \
get_refcount((IUnknown*)iface)
...
...
@@ -239,7 +240,6 @@ static void test_createfolder(void)
static
void
test_textstream
(
void
)
{
static
const
WCHAR
testfileW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'f'
,
'i'
,
'l'
,
'e'
,
'.'
,
't'
,
'x'
,
't'
,
0
};
ITextStream
*
stream
;
VARIANT_BOOL
b
;
DWORD
written
;
...
...
@@ -1451,10 +1451,18 @@ static void test_DriveCollection(void)
IDriveCollection_Release
(
drives
);
}
static
void
test_CreateTextFile
(
void
)
static
void
get_temp_filepath
(
const
WCHAR
*
filename
,
WCHAR
*
path
,
WCHAR
*
dir
)
{
static
const
WCHAR
scrrunW
[]
=
{
's'
,
'c'
,
'r'
,
'r'
,
'u'
,
'n'
,
'\\'
,
0
};
static
const
WCHAR
testfileW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'.'
,
't'
,
'x'
,
't'
,
0
};
GetTempPathW
(
MAX_PATH
,
path
);
lstrcatW
(
path
,
scrrunW
);
lstrcpyW
(
dir
,
path
);
lstrcatW
(
path
,
filename
);
}
static
void
test_CreateTextFile
(
void
)
{
WCHAR
pathW
[
MAX_PATH
],
dirW
[
MAX_PATH
],
buffW
[
10
];
ITextStream
*
stream
;
BSTR
nameW
,
str
;
...
...
@@ -1462,10 +1470,7 @@ static void test_CreateTextFile(void)
HRESULT
hr
;
BOOL
ret
;
GetTempPathW
(
sizeof
(
pathW
)
/
sizeof
(
WCHAR
),
pathW
);
lstrcatW
(
pathW
,
scrrunW
);
lstrcpyW
(
dirW
,
pathW
);
lstrcatW
(
pathW
,
testfileW
);
get_temp_filepath
(
testfileW
,
pathW
,
dirW
);
/* dir doesn't exist */
nameW
=
SysAllocString
(
pathW
);
...
...
@@ -1533,8 +1538,6 @@ static void test_CreateTextFile(void)
static
void
test_WriteLine
(
void
)
{
static
const
WCHAR
scrrunW
[]
=
{
's'
,
'c'
,
'r'
,
'r'
,
'u'
,
'n'
,
'\\'
,
0
};
static
const
WCHAR
testfileW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'.'
,
't'
,
'x'
,
't'
,
0
};
WCHAR
pathW
[
MAX_PATH
],
dirW
[
MAX_PATH
];
WCHAR
buffW
[
MAX_PATH
],
buff2W
[
MAX_PATH
];
char
buffA
[
MAX_PATH
];
...
...
@@ -1545,10 +1548,7 @@ static void test_WriteLine(void)
HRESULT
hr
;
BOOL
ret
;
GetTempPathW
(
sizeof
(
pathW
)
/
sizeof
(
WCHAR
),
pathW
);
lstrcatW
(
pathW
,
scrrunW
);
lstrcpyW
(
dirW
,
pathW
);
lstrcatW
(
pathW
,
testfileW
);
get_temp_filepath
(
testfileW
,
pathW
,
dirW
);
ret
=
CreateDirectoryW
(
dirW
,
NULL
);
ok
(
ret
,
"got %d, %d
\n
"
,
ret
,
GetLastError
());
...
...
@@ -1607,8 +1607,6 @@ static void test_WriteLine(void)
static
void
test_ReadAll
(
void
)
{
static
const
WCHAR
scrrunW
[]
=
{
's'
,
'c'
,
'r'
,
'r'
,
'u'
,
'n'
,
'\\'
,
0
};
static
const
WCHAR
testfileW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'.'
,
't'
,
'x'
,
't'
,
0
};
static
const
WCHAR
secondlineW
[]
=
{
's'
,
'e'
,
'c'
,
'o'
,
'n'
,
'd'
,
0
};
static
const
WCHAR
aW
[]
=
{
'A'
,
0
};
WCHAR
pathW
[
MAX_PATH
],
dirW
[
MAX_PATH
],
buffW
[
500
];
...
...
@@ -1618,10 +1616,7 @@ static void test_ReadAll(void)
BOOL
ret
;
BSTR
str
;
GetTempPathW
(
sizeof
(
pathW
)
/
sizeof
(
WCHAR
),
pathW
);
lstrcatW
(
pathW
,
scrrunW
);
lstrcpyW
(
dirW
,
pathW
);
lstrcatW
(
pathW
,
testfileW
);
get_temp_filepath
(
testfileW
,
pathW
,
dirW
);
ret
=
CreateDirectoryW
(
dirW
,
NULL
);
ok
(
ret
,
"got %d, %d
\n
"
,
ret
,
GetLastError
());
...
...
@@ -1741,8 +1736,6 @@ todo_wine
static
void
test_Read
(
void
)
{
static
const
WCHAR
scrrunW
[]
=
{
's'
,
'c'
,
'r'
,
'r'
,
'u'
,
'n'
,
'\\'
,
0
};
static
const
WCHAR
testfileW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'.'
,
't'
,
'x'
,
't'
,
0
};
static
const
WCHAR
secondlineW
[]
=
{
's'
,
'e'
,
'c'
,
'o'
,
'n'
,
'd'
,
0
};
static
const
WCHAR
aW
[]
=
{
'A'
,
0
};
WCHAR
pathW
[
MAX_PATH
],
dirW
[
MAX_PATH
],
buffW
[
500
];
...
...
@@ -1752,10 +1745,7 @@ static void test_Read(void)
BOOL
ret
;
BSTR
str
;
GetTempPathW
(
sizeof
(
pathW
)
/
sizeof
(
WCHAR
),
pathW
);
lstrcatW
(
pathW
,
scrrunW
);
lstrcpyW
(
dirW
,
pathW
);
lstrcatW
(
pathW
,
testfileW
);
get_temp_filepath
(
testfileW
,
pathW
,
dirW
);
ret
=
CreateDirectoryW
(
dirW
,
NULL
);
ok
(
ret
,
"got %d, %d
\n
"
,
ret
,
GetLastError
());
...
...
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