Skip to content

Commit e448949

Browse files
committed
Adapt compile test to new cmake suite
Uses /tmp as toolchain directory, which basically means it will detect the correct version in the homedir.
1 parent 7dee326 commit e448949

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/compile_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ def prepare_cmake(self, build_name):
324324
os.mkdir(test_name)
325325
os.chdir(test_name)
326326

327-
subprocess.call('cmake -DDOCUMENTATION=OFF -Wno-dev ../', shell=True)
327+
subprocess.call('cmake -DDOCUMENTATION=OFF -Wno-dev -DARDUINO_INSTALL_PATH=/tmp ../', shell=True)
328328

329329
def run_make(self, build_name):
330330
ret = subprocess.call('make -j' + str(CPU_COUNT), shell=True)

0 commit comments

Comments
 (0)