Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
f096fbf4
Commit
f096fbf4
authored
Mar 02, 2015
by
Jeff Hostetler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup formatting of clar trace messages.
parent
6b5c0886
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
tests/clar_libgit2_trace.c
+7
-7
No files found.
tests/clar_libgit2_trace.c
View file @
f096fbf4
...
...
@@ -130,31 +130,31 @@ void _cl_trace_cb__event_handler(
switch
(
ev
)
{
case
CL_TRACE__SUITE_BEGIN
:
git_trace
(
GIT_TRACE_TRACE
,
"
\n\n
%s
\n
Begin Suite: %s
"
,
HR
,
suite_name
);
git_trace
(
GIT_TRACE_TRACE
,
"
\n\n
%s
\n
%s: Begin Suite
"
,
HR
,
suite_name
);
break
;
case
CL_TRACE__SUITE_END
:
git_trace
(
GIT_TRACE_TRACE
,
"
\n\n
End Suite: %s
\n
%s"
,
suite_name
,
HR
);
git_trace
(
GIT_TRACE_TRACE
,
"
\n\n
%s: End Suite
\n
%s"
,
suite_name
,
HR
);
break
;
case
CL_TRACE__TEST__BEGIN
:
git_trace
(
GIT_TRACE_TRACE
,
"
\n
%s
/ %s: Beginning
"
,
suite_name
,
test_name
);
git_trace
(
GIT_TRACE_TRACE
,
"
\n
%s
::%s: Begin Test
"
,
suite_name
,
test_name
);
break
;
case
CL_TRACE__TEST__END
:
git_trace
(
GIT_TRACE_TRACE
,
"%s
/ %s: Finishing
"
,
suite_name
,
test_name
);
git_trace
(
GIT_TRACE_TRACE
,
"%s
::%s: End Test
"
,
suite_name
,
test_name
);
break
;
case
CL_TRACE__TEST__RUN_BEGIN
:
git_trace
(
GIT_TRACE_TRACE
,
"%s
/ %s: Run Started
"
,
suite_name
,
test_name
);
git_trace
(
GIT_TRACE_TRACE
,
"%s
::%s: Begin Run
"
,
suite_name
,
test_name
);
break
;
case
CL_TRACE__TEST__RUN_END
:
git_trace
(
GIT_TRACE_TRACE
,
"%s
/ %s: Run Ended
"
,
suite_name
,
test_name
);
git_trace
(
GIT_TRACE_TRACE
,
"%s
::%s: End Run
"
,
suite_name
,
test_name
);
break
;
case
CL_TRACE__TEST__LONGJMP
:
git_trace
(
GIT_TRACE_TRACE
,
"%s
/
%s: Aborted"
,
suite_name
,
test_name
);
git_trace
(
GIT_TRACE_TRACE
,
"%s
::
%s: Aborted"
,
suite_name
,
test_name
);
break
;
default:
...
...
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