Skip to content

Commit a58c901

Browse files
committed
Removed useless tasks from ctags_runner test
1 parent f0190df commit a58c901

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
@@ -40,9 +40,6 @@ func TestCTagsRunner(t *testing.T) {
4040
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
4141
return _err
4242
}),
43-
&builder.ContainerFindIncludes{},
44-
&builder.PrintUsedLibrariesIfVerbose{},
45-
&builder.WarnAboutArchIncompatibleLibraries{},
4643
types.BareCommand(func(ctx *types.Context) error {
4744
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
4845
return _err
@@ -78,9 +75,6 @@ func TestCTagsRunnerSketchWithClass(t *testing.T) {
7875
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
7976
return _err
8077
}),
81-
&builder.ContainerFindIncludes{},
82-
&builder.PrintUsedLibrariesIfVerbose{},
83-
&builder.WarnAboutArchIncompatibleLibraries{},
8478
types.BareCommand(func(ctx *types.Context) error {
8579
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
8680
return _err
@@ -114,9 +108,6 @@ func TestCTagsRunnerSketchWithTypename(t *testing.T) {
114108
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
115109
return _err
116110
}),
117-
&builder.ContainerFindIncludes{},
118-
&builder.PrintUsedLibrariesIfVerbose{},
119-
&builder.WarnAboutArchIncompatibleLibraries{},
120111
types.BareCommand(func(ctx *types.Context) error {
121112
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
122113
return _err
@@ -149,9 +140,6 @@ func TestCTagsRunnerSketchWithNamespace(t *testing.T) {
149140
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
150141
return _err
151142
}),
152-
&builder.ContainerFindIncludes{},
153-
&builder.PrintUsedLibrariesIfVerbose{},
154-
&builder.WarnAboutArchIncompatibleLibraries{},
155143
types.BareCommand(func(ctx *types.Context) error {
156144
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
157145
return _err
@@ -183,9 +171,6 @@ func TestCTagsRunnerSketchWithTemplates(t *testing.T) {
183171
ctx.LineOffset, ctx.SketchSourceMerged, _err = bldr.PrepareSketchBuildPath(ctx.Sketch, ctx.SourceOverride, ctx.SketchBuildPath)
184172
return _err
185173
}),
186-
&builder.ContainerFindIncludes{},
187-
&builder.PrintUsedLibrariesIfVerbose{},
188-
&builder.WarnAboutArchIncompatibleLibraries{},
189174
types.BareCommand(func(ctx *types.Context) error {
190175
ctagsOutput, _, _, _, _err = builder.RunCTags(ctx.Sketch, ctx.SketchSourceMerged, "ctags_target.cpp", ctx.BuildProperties, ctx.PreprocPath)
191176
return _err

0 commit comments

Comments
 (0)