put fqbn in filename to make it unique

This commit is contained in:
lady ada 2021-10-09 13:30:17 -04:00
parent 3fc602ef7a
commit 373f0c0c22

View file

@ -365,15 +365,11 @@ def test_examples_in_folder(folderpath):
filename = generate_uf2(folderpath) filename = generate_uf2(folderpath)
if filename is None: if filename is None:
success = 1 # failure success = 1 # failure
if IS_LEARNING_SYS: else if IS_LEARNING_SYS:
print(filename)
print(folderpath)
print(BUILD_DIR)
fqbnpath, uf2file = filename.split("/")[-2:] fqbnpath, uf2file = filename.split("/")[-2:]
os.makedirs(BUILD_DIR+"/build", exist_ok=True) os.makedirs(BUILD_DIR+"/build", exist_ok=True)
os.makedirs(BUILD_DIR+"/build/"+fqbnpath, exist_ok=True) os.makedirs(BUILD_DIR+"/build/"+fqbnpath, exist_ok=True)
shutil.copy(filename, BUILD_DIR+"/build/"+fqbnpath+"/"+uf2file) shutil.copy(filename, BUILD_DIR+"/build/"+fqbnpath+"-"+uf2file)
os.system("ls -lR "+folderpath+"/build")
os.system("ls -lR "+BUILD_DIR+"/build") os.system("ls -lR "+BUILD_DIR+"/build")
else: else:
ColorPrint.print_fail(CROSS) ColorPrint.print_fail(CROSS)