File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,11 @@ func init() {
160160func main () {
161161 flag .Parse ()
162162
163+ for _ , t := range customBuildPropertiesFlag {
164+ fmt .Println (t )
165+ }
166+ return
167+
163168 if * versionFlag {
164169 fmt .Println ("Arduino Builder " + VERSION )
165170 fmt .Println ("Copyright (C) 2015 Arduino LLC and contributors" )
Original file line number Diff line number Diff line change 3030package test
3131
3232import (
33+ "io/ioutil"
34+ "os"
35+ "path/filepath"
36+ "testing"
37+
3338 "arduino.cc/builder"
3439 "arduino.cc/builder/constants"
3540 "arduino.cc/builder/ctags"
3641 "arduino.cc/builder/types"
3742 "github.com/stretchr/testify/require"
38- "io/ioutil"
39- "os"
40- "path/filepath"
41- "testing"
4243)
4344
4445func TestCTagsToPrototypesShouldListPrototypes (t * testing.T ) {
@@ -474,7 +475,6 @@ func TestCTagsRunnerSketchWithClassFunction(t *testing.T) {
474475 & builder.CTagsTargetFileSaver {Source : & ctx .Source , TargetFileName : constants .FILE_CTAGS_TARGET },
475476 & ctags.CTagsRunner {},
476477 & ctags.CTagsParser {},
477- & CollectCtagsFromPreprocSource {},
478478 & ctags.CTagsToPrototypes {},
479479 }
480480
You can’t perform that action at this time.
0 commit comments