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
315e8ce3
Commit
315e8ce3
authored
Jun 29, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jun 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Run the files test in a temporary directory.
parent
63ac79f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
8 deletions
+15
-8
files.c
dlls/advpack/tests/files.c
+15
-8
No files found.
dlls/advpack/tests/files.c
View file @
315e8ce3
...
@@ -63,14 +63,6 @@ static void createTestFile(const CHAR *name)
...
@@ -63,14 +63,6 @@ static void createTestFile(const CHAR *name)
static
void
create_test_files
(
void
)
static
void
create_test_files
(
void
)
{
{
int
len
;
GetCurrentDirectoryA
(
MAX_PATH
,
CURR_DIR
);
len
=
lstrlenA
(
CURR_DIR
);
if
(
len
&&
(
CURR_DIR
[
len
-
1
]
==
'\\'
))
CURR_DIR
[
len
-
1
]
=
0
;
createTestFile
(
"a.txt"
);
createTestFile
(
"a.txt"
);
createTestFile
(
"b.txt"
);
createTestFile
(
"b.txt"
);
CreateDirectoryA
(
"testdir"
,
NULL
);
CreateDirectoryA
(
"testdir"
,
NULL
);
...
@@ -528,7 +520,21 @@ static void test_AdvInstallFile(void)
...
@@ -528,7 +520,21 @@ static void test_AdvInstallFile(void)
START_TEST
(
files
)
START_TEST
(
files
)
{
{
DWORD
len
;
char
temp_path
[
MAX_PATH
],
prev_path
[
MAX_PATH
];
init_function_pointers
();
init_function_pointers
();
GetCurrentDirectoryA
(
MAX_PATH
,
prev_path
);
GetTempPath
(
MAX_PATH
,
temp_path
);
SetCurrentDirectoryA
(
temp_path
);
lstrcpyA
(
CURR_DIR
,
temp_path
);
len
=
lstrlenA
(
CURR_DIR
);
if
(
len
&&
(
CURR_DIR
[
len
-
1
]
==
'\\'
))
CURR_DIR
[
len
-
1
]
=
0
;
create_test_files
();
create_test_files
();
create_cab_file
();
create_cab_file
();
...
@@ -539,4 +545,5 @@ START_TEST(files)
...
@@ -539,4 +545,5 @@ START_TEST(files)
delete_test_files
();
delete_test_files
();
FreeLibrary
(
hAdvPack
);
FreeLibrary
(
hAdvPack
);
SetCurrentDirectoryA
(
prev_path
);
}
}
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