@@ -61,7 +61,7 @@ func TestBuilderEmptySketch(t *testing.T) {
61
61
exist , err := buildPath .Join (constants .FOLDER_CORE , "HardwareSerial.cpp.o" ).ExistCheck ()
62
62
NoError (t , err )
63
63
require .True (t , exist )
64
- exist , err = buildPath .Join (constants .FOLDER_PREPROC , constants . FILE_CTAGS_TARGET_FOR_GCC_MINUS_E ).ExistCheck ()
64
+ exist , err = buildPath .Join (constants .FOLDER_PREPROC , "ctags_target_for_gcc_minus_e.cpp" ).ExistCheck ()
65
65
NoError (t , err )
66
66
require .True (t , exist )
67
67
exist , err = buildPath .Join (constants .FOLDER_SKETCH , "sketch1.ino.cpp.o" ).ExistCheck ()
@@ -91,7 +91,7 @@ func TestBuilderBridge(t *testing.T) {
91
91
exist , err := buildPath .Join (constants .FOLDER_CORE , "HardwareSerial.cpp.o" ).ExistCheck ()
92
92
NoError (t , err )
93
93
require .True (t , exist )
94
- exist , err = buildPath .Join (constants .FOLDER_PREPROC , constants . FILE_CTAGS_TARGET_FOR_GCC_MINUS_E ).ExistCheck ()
94
+ exist , err = buildPath .Join (constants .FOLDER_PREPROC , "ctags_target_for_gcc_minus_e.cpp" ).ExistCheck ()
95
95
NoError (t , err )
96
96
require .True (t , exist )
97
97
exist , err = buildPath .Join (constants .FOLDER_SKETCH , "Bridge.ino.cpp.o" ).ExistCheck ()
@@ -124,7 +124,7 @@ func TestBuilderSketchWithConfig(t *testing.T) {
124
124
exist , err := buildPath .Join (constants .FOLDER_CORE , "HardwareSerial.cpp.o" ).ExistCheck ()
125
125
NoError (t , err )
126
126
require .True (t , exist )
127
- exist , err = buildPath .Join (constants .FOLDER_PREPROC , constants . FILE_CTAGS_TARGET_FOR_GCC_MINUS_E ).ExistCheck ()
127
+ exist , err = buildPath .Join (constants .FOLDER_PREPROC , "ctags_target_for_gcc_minus_e.cpp" ).ExistCheck ()
128
128
NoError (t , err )
129
129
require .True (t , exist )
130
130
exist , err = buildPath .Join (constants .FOLDER_SKETCH , "sketch_with_config.ino.cpp.o" ).ExistCheck ()
@@ -162,7 +162,7 @@ func TestBuilderBridgeTwice(t *testing.T) {
162
162
exist , err := buildPath .Join (constants .FOLDER_CORE , "HardwareSerial.cpp.o" ).ExistCheck ()
163
163
NoError (t , err )
164
164
require .True (t , exist )
165
- exist , err = buildPath .Join (constants .FOLDER_PREPROC , constants . FILE_CTAGS_TARGET_FOR_GCC_MINUS_E ).ExistCheck ()
165
+ exist , err = buildPath .Join (constants .FOLDER_PREPROC , "ctags_target_for_gcc_minus_e.cpp" ).ExistCheck ()
166
166
NoError (t , err )
167
167
require .True (t , exist )
168
168
exist , err = buildPath .Join (constants .FOLDER_SKETCH , "Bridge.ino.cpp.o" ).ExistCheck ()
@@ -202,7 +202,7 @@ func TestBuilderBridgeSAM(t *testing.T) {
202
202
exist , err = buildPath .Join (constants .FOLDER_CORE , "avr" , "dtostrf.c.d" ).ExistCheck ()
203
203
NoError (t , err )
204
204
require .True (t , exist )
205
- exist , err = buildPath .Join (constants .FOLDER_PREPROC , constants . FILE_CTAGS_TARGET_FOR_GCC_MINUS_E ).ExistCheck ()
205
+ exist , err = buildPath .Join (constants .FOLDER_PREPROC , "ctags_target_for_gcc_minus_e.cpp" ).ExistCheck ()
206
206
NoError (t , err )
207
207
require .True (t , exist )
208
208
exist , err = buildPath .Join (constants .FOLDER_SKETCH , "Bridge.ino.cpp.o" ).ExistCheck ()
@@ -242,7 +242,7 @@ func TestBuilderBridgeRedBearLab(t *testing.T) {
242
242
exist , err := buildPath .Join (constants .FOLDER_CORE , "HardwareSerial.cpp.o" ).ExistCheck ()
243
243
NoError (t , err )
244
244
require .True (t , exist )
245
- exist , err = buildPath .Join (constants .FOLDER_PREPROC , constants . FILE_CTAGS_TARGET_FOR_GCC_MINUS_E ).ExistCheck ()
245
+ exist , err = buildPath .Join (constants .FOLDER_PREPROC , "ctags_target_for_gcc_minus_e.cpp" ).ExistCheck ()
246
246
NoError (t , err )
247
247
require .True (t , exist )
248
248
exist , err = buildPath .Join (constants .FOLDER_SKETCH , "Bridge.ino.cpp.o" ).ExistCheck ()
0 commit comments