diff --git a/scripts/report-basblocks b/scripts/report-basblocks new file mode 100755 index 0000000..97b768d --- /dev/null +++ b/scripts/report-basblocks @@ -0,0 +1,8 @@ +#!/bin/bash + +OUTPUT_DIR=/output/hwtests + +for DIR in $OUTPUT_DIR/* ; do + [[ $DIR == snapshot ]] && next + echo $DIR +done