Skip to content

Commit f3c8208

Browse files
committed
Removed useless tasks from ctags_runner test
1 parent 3447c14 commit f3c8208

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

legacy/builder/test/ctags_runner_test.go

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ func TestCTagsRunner(t *testing.T) {
5353
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
5454
return _err
5555
}),
56-
&builder.ContainerFindIncludes{},
57-
&builder.PrintUsedLibrariesIfVerbose{},
58-
&builder.WarnAboutArchIncompatibleLibraries{},
5956
types.BareCommand(func(ctx *types.Context) error {
6057
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
6158
return _err
@@ -103,9 +100,6 @@ func TestCTagsRunnerSketchWithClass(t *testing.T) {
103100
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
104101
return _err
105102
}),
106-
&builder.ContainerFindIncludes{},
107-
&builder.PrintUsedLibrariesIfVerbose{},
108-
&builder.WarnAboutArchIncompatibleLibraries{},
109103
types.BareCommand(func(ctx *types.Context) error {
110104
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
111105
return _err
@@ -151,9 +145,6 @@ func TestCTagsRunnerSketchWithTypename(t *testing.T) {
151145
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
152146
return _err
153147
}),
154-
&builder.ContainerFindIncludes{},
155-
&builder.PrintUsedLibrariesIfVerbose{},
156-
&builder.WarnAboutArchIncompatibleLibraries{},
157148
types.BareCommand(func(ctx *types.Context) error {
158149
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
159150
return _err
@@ -198,9 +189,6 @@ func TestCTagsRunnerSketchWithNamespace(t *testing.T) {
198189
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
199190
return _err
200191
}),
201-
&builder.ContainerFindIncludes{},
202-
&builder.PrintUsedLibrariesIfVerbose{},
203-
&builder.WarnAboutArchIncompatibleLibraries{},
204192
types.BareCommand(func(ctx *types.Context) error {
205193
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
206194
return _err
@@ -244,9 +232,6 @@ func TestCTagsRunnerSketchWithTemplates(t *testing.T) {
244232
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
245233
return _err
246234
}),
247-
&builder.ContainerFindIncludes{},
248-
&builder.PrintUsedLibrariesIfVerbose{},
249-
&builder.WarnAboutArchIncompatibleLibraries{},
250235
types.BareCommand(func(ctx *types.Context) error {
251236
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
252237
return _err

0 commit comments

Comments
 (0)