File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -310,6 +310,7 @@ def test_examples_in_folder(folderpath):
310
310
global success
311
311
for example in sorted (os .listdir (folderpath )):
312
312
examplepath = folderpath + "/" + example
313
+ ColorPrint .print_info (folderpath , examplepath )
313
314
if os .path .isdir (examplepath ):
314
315
test_examples_in_folder (examplepath )
315
316
continue
@@ -359,6 +360,9 @@ def test_examples_in_folder(folderpath):
359
360
out , err = proc .communicate ()
360
361
r = 1
361
362
363
+ os .system ("ls -lR " + BUILD_DIR + "/build" )
364
+ os .system ("ls -lR " + folderpath )
365
+
362
366
if r == 0 and not (err and BUILD_WALL == True ):
363
367
ColorPrint .print_pass (CHECK )
364
368
if err :
@@ -374,6 +378,7 @@ def test_examples_in_folder(folderpath):
374
378
if filename is None :
375
379
success = 1 # failure
376
380
if IS_LEARNING_SYS :
381
+ ColorPrint .print_info (filename .split , filename .split ("/" ))
377
382
fqbnpath , uf2file = filename .split ("/" )[- 2 :]
378
383
os .makedirs (BUILD_DIR + "/build" , exist_ok = True )
379
384
os .makedirs (BUILD_DIR + "/build/" + fqbnpath , exist_ok = True )
You can’t perform that action at this time.
0 commit comments