Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
be74c29b
Commit
be74c29b
authored
Dec 07, 2008
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up line numbers after commit 109
parent
5a34ceb6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ccan/tap/test/run.c
ccan/tap/test/run.c
+4
-4
No files found.
ccan/tap/test/run.c
View file @
be74c29b
...
...
@@ -90,21 +90,21 @@ int main(int argc, char *argv[])
ok
(
0
,
"msg2"
);
expect
(
p
[
0
],
"not ok 2 - msg2
\n
"
"# Failed test (*tap/test/run.c:main() at line
77
)
\n
"
);
"# Failed test (*tap/test/run.c:main() at line
91
)
\n
"
);
ok1
(
true
);
expect
(
p
[
0
],
"ok 3 - true
\n
"
);
ok1
(
false
);
expect
(
p
[
0
],
"not ok 4 - false
\n
"
"# Failed test (*tap/test/run.c:main() at line
84
)
\n
"
);
"# Failed test (*tap/test/run.c:main() at line
98
)
\n
"
);
pass
(
"passed"
);
expect
(
p
[
0
],
"ok 5 - passed
\n
"
);
fail
(
"failed"
);
expect
(
p
[
0
],
"not ok 6 - failed
\n
"
"# Failed test (*tap/test/run.c:main() at line
91
)
\n
"
);
"# Failed test (*tap/test/run.c:main() at line
105
)
\n
"
);
skip
(
2
,
"skipping %s"
,
"test"
);
expect
(
p
[
0
],
"ok 7 # skip skipping test
\n
"
...
...
@@ -113,7 +113,7 @@ int main(int argc, char *argv[])
todo_start
(
"todo"
);
ok1
(
false
);
expect
(
p
[
0
],
"not ok 9 - false # TODO todo
\n
"
"# Failed (TODO) test (*tap/test/run.c:main() at line 1
00
)
\n
"
);
"# Failed (TODO) test (*tap/test/run.c:main() at line 1
14
)
\n
"
);
ok1
(
true
);
expect
(
p
[
0
],
"ok 10 - true # TODO todo
\n
"
);
todo_end
();
...
...
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