File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,11 @@ func init() {
160
160
func main () {
161
161
flag .Parse ()
162
162
163
+ for _ , t := range customBuildPropertiesFlag {
164
+ fmt .Println (t )
165
+ }
166
+ return
167
+
163
168
if * versionFlag {
164
169
fmt .Println ("Arduino Builder " + VERSION )
165
170
fmt .Println ("Copyright (C) 2015 Arduino LLC and contributors" )
Original file line number Diff line number Diff line change 30
30
package test
31
31
32
32
import (
33
+ "io/ioutil"
34
+ "os"
35
+ "path/filepath"
36
+ "testing"
37
+
33
38
"arduino.cc/builder"
34
39
"arduino.cc/builder/constants"
35
40
"arduino.cc/builder/ctags"
36
41
"arduino.cc/builder/types"
37
42
"github.com/stretchr/testify/require"
38
- "io/ioutil"
39
- "os"
40
- "path/filepath"
41
- "testing"
42
43
)
43
44
44
45
func TestCTagsToPrototypesShouldListPrototypes (t * testing.T ) {
@@ -474,7 +475,6 @@ func TestCTagsRunnerSketchWithClassFunction(t *testing.T) {
474
475
& builder.CTagsTargetFileSaver {Source : & ctx .Source , TargetFileName : constants .FILE_CTAGS_TARGET },
475
476
& ctags.CTagsRunner {},
476
477
& ctags.CTagsParser {},
477
- & CollectCtagsFromPreprocSource {},
478
478
& ctags.CTagsToPrototypes {},
479
479
}
480
480
You can’t perform that action at this time.
0 commit comments