@@ -60,6 +60,7 @@ func TestPrototypesAdderBridgeExample(t *testing.T) {
60
60
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
61
61
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
62
62
context [constants .CTX_VERBOSE ] = true
63
+ context [constants .CTX_DEBUG_LEVEL ] = 10
63
64
64
65
commands := []types.Command {
65
66
& builder.SetupHumanLoggerIfMissing {},
@@ -101,6 +102,7 @@ func TestPrototypesAdderSketchWithIfDef(t *testing.T) {
101
102
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
102
103
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
103
104
context [constants .CTX_VERBOSE ] = true
105
+ context [constants .CTX_DEBUG_LEVEL ] = 10
104
106
105
107
commands := []types.Command {
106
108
& builder.SetupHumanLoggerIfMissing {},
@@ -142,6 +144,7 @@ func TestPrototypesAdderBaladuino(t *testing.T) {
142
144
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
143
145
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
144
146
context [constants .CTX_VERBOSE ] = true
147
+ context [constants .CTX_DEBUG_LEVEL ] = 10
145
148
146
149
commands := []types.Command {
147
150
& builder.SetupHumanLoggerIfMissing {},
@@ -183,6 +186,7 @@ func TestPrototypesAdderCharWithEscapedDoubleQuote(t *testing.T) {
183
186
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
184
187
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
185
188
context [constants .CTX_VERBOSE ] = true
189
+ context [constants .CTX_DEBUG_LEVEL ] = 10
186
190
187
191
commands := []types.Command {
188
192
& builder.SetupHumanLoggerIfMissing {},
@@ -224,6 +228,7 @@ func TestPrototypesAdderIncludeBetweenMultilineComment(t *testing.T) {
224
228
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
225
229
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
226
230
context [constants .CTX_VERBOSE ] = true
231
+ context [constants .CTX_DEBUG_LEVEL ] = 10
227
232
228
233
commands := []types.Command {
229
234
& builder.SetupHumanLoggerIfMissing {},
@@ -265,6 +270,7 @@ func TestPrototypesAdderLineContinuations(t *testing.T) {
265
270
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
266
271
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
267
272
context [constants .CTX_VERBOSE ] = true
273
+ context [constants .CTX_DEBUG_LEVEL ] = 10
268
274
269
275
commands := []types.Command {
270
276
& builder.SetupHumanLoggerIfMissing {},
@@ -306,6 +312,7 @@ func TestPrototypesAdderStringWithComment(t *testing.T) {
306
312
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
307
313
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
308
314
context [constants .CTX_VERBOSE ] = true
315
+ context [constants .CTX_DEBUG_LEVEL ] = 10
309
316
310
317
commands := []types.Command {
311
318
& builder.SetupHumanLoggerIfMissing {},
@@ -347,6 +354,7 @@ func TestPrototypesAdderSketchWithStruct(t *testing.T) {
347
354
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
348
355
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
349
356
context [constants .CTX_VERBOSE ] = true
357
+ context [constants .CTX_DEBUG_LEVEL ] = 10
350
358
351
359
commands := []types.Command {
352
360
& builder.SetupHumanLoggerIfMissing {},
@@ -391,6 +399,7 @@ func TestPrototypesAdderSketchWithConfig(t *testing.T) {
391
399
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
392
400
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
393
401
context [constants .CTX_VERBOSE ] = true
402
+ context [constants .CTX_DEBUG_LEVEL ] = 10
394
403
395
404
commands := []types.Command {
396
405
& builder.SetupHumanLoggerIfMissing {},
@@ -435,6 +444,7 @@ func TestPrototypesAdderSketchNoFunctionsTwoFiles(t *testing.T) {
435
444
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
436
445
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
437
446
context [constants .CTX_VERBOSE ] = true
447
+ context [constants .CTX_DEBUG_LEVEL ] = 10
438
448
439
449
commands := []types.Command {
440
450
& builder.SetupHumanLoggerIfMissing {},
@@ -476,6 +486,7 @@ func TestPrototypesAdderSketchNoFunctions(t *testing.T) {
476
486
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
477
487
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
478
488
context [constants .CTX_VERBOSE ] = true
489
+ context [constants .CTX_DEBUG_LEVEL ] = 10
479
490
480
491
commands := []types.Command {
481
492
& builder.SetupHumanLoggerIfMissing {},
@@ -520,6 +531,7 @@ func TestPrototypesAdderSketchWithDefaultArgs(t *testing.T) {
520
531
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
521
532
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
522
533
context [constants .CTX_VERBOSE ] = true
534
+ context [constants .CTX_DEBUG_LEVEL ] = 10
523
535
524
536
commands := []types.Command {
525
537
& builder.SetupHumanLoggerIfMissing {},
@@ -564,6 +576,7 @@ func TestPrototypesAdderSketchWithInlineFunction(t *testing.T) {
564
576
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
565
577
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
566
578
context [constants .CTX_VERBOSE ] = true
579
+ context [constants .CTX_DEBUG_LEVEL ] = 10
567
580
568
581
commands := []types.Command {
569
582
& builder.SetupHumanLoggerIfMissing {},
@@ -608,6 +621,7 @@ func TestPrototypesAdderSketchWithFunctionSignatureInsideIFDEF(t *testing.T) {
608
621
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
609
622
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
610
623
context [constants .CTX_VERBOSE ] = true
624
+ context [constants .CTX_DEBUG_LEVEL ] = 10
611
625
612
626
commands := []types.Command {
613
627
& builder.SetupHumanLoggerIfMissing {},
@@ -652,6 +666,7 @@ func TestPrototypesAdderSketchWithUSBCON(t *testing.T) {
652
666
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
653
667
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
654
668
context [constants .CTX_VERBOSE ] = true
669
+ context [constants .CTX_DEBUG_LEVEL ] = 10
655
670
656
671
commands := []types.Command {
657
672
& builder.SetupHumanLoggerIfMissing {},
@@ -695,6 +710,7 @@ func TestPrototypesAdderSketchWithTypename(t *testing.T) {
695
710
context [constants .CTX_BUILD_PROPERTIES_RUNTIME_IDE_VERSION ] = "10600"
696
711
context [constants .CTX_LIBRARIES_FOLDERS ] = []string {"libraries" , "downloaded_libraries" }
697
712
context [constants .CTX_VERBOSE ] = true
713
+ context [constants .CTX_DEBUG_LEVEL ] = 10
698
714
699
715
commands := []types.Command {
700
716
& builder.SetupHumanLoggerIfMissing {},
@@ -739,6 +755,7 @@ func TestPrototypesAdderSketchWithIfDef2(t *testing.T) {
739
755
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
740
756
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
741
757
context [constants .CTX_VERBOSE ] = true
758
+ context [constants .CTX_DEBUG_LEVEL ] = 10
742
759
743
760
commands := []types.Command {
744
761
& builder.SetupHumanLoggerIfMissing {},
@@ -786,6 +803,7 @@ func TestPrototypesAdderSketchWithIfDef2SAM(t *testing.T) {
786
803
context [constants .CTX_BUILT_IN_LIBRARIES_FOLDERS ] = []string {"downloaded_libraries" }
787
804
context [constants .CTX_OTHER_LIBRARIES_FOLDERS ] = []string {"libraries" }
788
805
context [constants .CTX_VERBOSE ] = true
806
+ context [constants .CTX_DEBUG_LEVEL ] = 10
789
807
790
808
commands := []types.Command {
791
809
& builder.SetupHumanLoggerIfMissing {},
0 commit comments