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
5cb45138
Commit
5cb45138
authored
Jun 13, 2011
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jun 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd/tests: Get rid of obsolete @todo_space@ construct.
parent
1e2e3d1a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
batch.c
programs/cmd/tests/batch.c
+0
-8
No files found.
programs/cmd/tests/batch.c
View file @
5cb45138
...
...
@@ -142,7 +142,6 @@ static const char *compare_line(const char *out_line, const char *out_end, const
const
char
*
err
=
NULL
;
static
const
char
pwd_cmd
[]
=
{
'@'
,
'p'
,
'w'
,
'd'
,
'@'
};
static
const
char
todo_space_cmd
[]
=
{
'@'
,
't'
,
'o'
,
'd'
,
'o'
,
'_'
,
's'
,
'p'
,
'a'
,
'c'
,
'e'
,
'@'
};
static
const
char
space_cmd
[]
=
{
'@'
,
's'
,
'p'
,
'a'
,
'c'
,
'e'
,
'@'
};
static
const
char
or_broken_cmd
[]
=
{
'@'
,
'o'
,
'r'
,
'_'
,
'b'
,
'r'
,
'o'
,
'k'
,
'e'
,
'n'
,
'@'
};
...
...
@@ -159,13 +158,6 @@ static const char *compare_line(const char *out_line, const char *out_end, const
out_ptr
+=
workdir_len
;
continue
;
}
}
else
if
(
exp_ptr
+
sizeof
(
todo_space_cmd
)
<=
exp_end
&&
!
memcmp
(
exp_ptr
,
todo_space_cmd
,
sizeof
(
todo_space_cmd
)))
{
exp_ptr
+=
sizeof
(
todo_space_cmd
);
todo_wine
ok
(
*
out_ptr
==
' '
,
"expected space
\n
"
);
if
(
out_ptr
<
out_end
&&
*
out_ptr
==
' '
)
out_ptr
++
;
continue
;
}
else
if
(
exp_ptr
+
sizeof
(
space_cmd
)
<=
exp_end
&&
!
memcmp
(
exp_ptr
,
space_cmd
,
sizeof
(
space_cmd
)))
{
exp_ptr
+=
sizeof
(
space_cmd
);
...
...
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