Skip to content

Commit 936e369

Browse files
committed
Releasing 1.3.15
Signed-off-by: Cristian Maglie <[email protected]>
1 parent 071d4b7 commit 936e369

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Diff for: main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import (
4848
"github.com/go-errors/errors"
4949
)
5050

51-
const VERSION = "1.3.14"
51+
const VERSION = "1.3.15"
5252

5353
const FLAG_ACTION_COMPILE = "compile"
5454
const FLAG_ACTION_PREPROCESS = "preprocess"

Diff for: src/arduino.cc/builder/test/try_build_of_problematic_sketch_test.go

+12
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,18 @@ func TestTryBuild036(t *testing.T) {
191191
tryBuildWithContext(t, context, "sketch11", "sketch_fastleds.ino")
192192
}
193193

194+
func TestTryBuild037(t *testing.T) {
195+
context := makeDefaultContext(t)
196+
context[constants.CTX_FQBN] = "arduino:samd:arduino_zero_native"
197+
tryBuildWithContext(t, context, "sketch12", "sketch12.ino")
198+
}
199+
200+
func TestTryBuild038(t *testing.T) {
201+
context := makeDefaultContext(t)
202+
context[constants.CTX_FQBN] = "arduino:sam:arduino_due_x"
203+
tryBuildWithContext(t, context, "sketch12", "sketch12.ino")
204+
}
205+
194206
func makeDefaultContext(t *testing.T) map[string]interface{} {
195207
DownloadCoresAndToolsAndLibraries(t)
196208

0 commit comments

Comments
 (0)