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
e4fd5196
Commit
e4fd5196
authored
Feb 16, 2010
by
Dan Kegel
Committed by
Alexandre Julliard
Feb 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd: Rename reference file from .out to .exp to avoid clash with gnu make builtin rule.
parent
8bc6ff9d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
batch.c
programs/cmd/tests/batch.c
+2
-2
rsrc.rc
programs/cmd/tests/rsrc.rc
+2
-2
test_builtins.cmd.exp
programs/cmd/tests/test_builtins.cmd.exp
+0
-0
No files found.
programs/cmd/tests/batch.c
View file @
e4fd5196
...
...
@@ -190,7 +190,7 @@ static void run_from_file(char *file_name)
return
;
}
sprintf
(
out_name
,
"%s.
out
"
,
file_name
);
sprintf
(
out_name
,
"%s.
exp
"
,
file_name
);
out_size
=
map_file
(
out_name
,
&
out_data
);
if
(
!
out_size
)
{
ok
(
0
,
"Could not map file %s: %u
\n
"
,
out_name
,
GetLastError
());
...
...
@@ -236,7 +236,7 @@ static BOOL WINAPI test_enum_proc(HMODULE module, LPCTSTR type, LPSTR name, LONG
if
(
!
cmd_size
)
return
TRUE
;
sprintf
(
res_name
,
"%s.
out
"
,
name
);
sprintf
(
res_name
,
"%s.
exp
"
,
name
);
out_size
=
load_resource
(
res_name
,
"TESTOUT"
,
&
out_data
);
if
(
!
out_size
)
return
TRUE
;
...
...
programs/cmd/tests/rsrc.rc
View file @
e4fd5196
...
...
@@ -19,5 +19,5 @@
/* @makedep: test_builtins.cmd */
test_builtins.cmd TESTCMD "test_builtins.cmd"
/* @makedep: test_builtins.cmd.
out
*/
test_builtins.cmd.
out TESTOUT "test_builtins.cmd.out
"
/* @makedep: test_builtins.cmd.
exp
*/
test_builtins.cmd.
exp TESTOUT "test_builtins.cmd.exp
"
programs/cmd/tests/test_builtins.cmd.
out
→
programs/cmd/tests/test_builtins.cmd.
exp
View file @
e4fd5196
File moved
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