gen_diffs.sh 413 B

12345678910111213
  1. # Compare generated instances against the official v2.138 release
  2. OLD_FONTS=$(ls ../v2_138_fonts/*.ttf)
  3. NEW_FONTS_PATH=../../../master_ttf
  4. for old_font in $OLD_FONTS
  5. do
  6. filename=$(basename $old_font);
  7. new_font=$NEW_FONTS_PATH/$filename
  8. report_file=$(basename $old_font ttf)"md"
  9. diffenator $old_font $new_font -ol 10 -md
  10. viz_diffenator.py $old_font $new_font -u http://127.0.0.1:5000 -l
  11. done;