Skip to content

Commit 9ed3dd8

Browse files
committed
Test added for reading BuildProperties from ./platform.sketch.txt file
1 parent 71ab21d commit 9ed3dd8

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/*
2+
* This file is part of Arduino Builder.
3+
*
4+
* Arduino Builder is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with this program; if not, write to the Free Software
16+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17+
*
18+
* As a special exception, you may use this file as part of a free software
19+
* library without restriction. Specifically, if other files instantiate
20+
* templates or use macros or inline functions from this file, or you compile
21+
* this file and link it with other files to produce an executable, this
22+
* file does not by itself cause the resulting executable to be covered by
23+
* the GNU General Public License. This exception does not however
24+
* invalidate any other reasons why the executable file might be covered by
25+
* the GNU General Public License.
26+
*
27+
* Copyright 2018 Piotr Henryk Dabrowski <[email protected]>
28+
*/
29+
30+
package test
31+
32+
import (
33+
"path/filepath"
34+
"testing"
35+
36+
"github.com/arduino/arduino-builder"
37+
"github.com/stretchr/testify/require"
38+
)
39+
40+
func TestAddBuildBoardPropertiesFromPlatformSketchTxtFile(t *testing.T) {
41+
ctx := makeDefaultContext(t)
42+
43+
sketchLocation := filepath.Join("sketch_with_platform_sketch_txt", "sketch_with_platform_sketch_txt.ino")
44+
ctx.SketchLocation = sketchLocation
45+
46+
err := builder.RunBuilder(ctx)
47+
require.NoError(t, err, "Unexpected build error for "+sketchLocation)
48+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
compiler.c.extra_flags = -DSKETCH_DEFINED_VALUE=1
2+
compiler.cpp.extra_flags = -DSKETCH_DEFINED_VALUE=2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#ifndef SKETCH_DEFINED_VALUE
2+
#error SKETCH_DEFINED_VALUE was not defined in ./platform.sketch.txt
3+
#endif
4+
5+
void setup() {}
6+
void loop() {}

0 commit comments

Comments
 (0)