author | Ryan C. Gordon <icculus@icculus.org> |
Thu, 03 Jul 2008 12:09:26 -0400 | |
branch | trunk |
changeset 421 | bfd3d95273ec |
parent 357 | 4b267433af82 |
child 591 | 20a0ac14babf |
permissions | -rwxr-xr-x |
#!/bin/sh for feh in ??_?_?/*.bytecode ; do echo -n "$feh " echo -n `./testparse glsl $feh |grep "INSTRUCTION COUNT: " |perl -w -p -e 's/\AINSTRUCTION COUNT://;'` echo -n " vs. " grep "instruction slots used" `echo $feh |perl -w -p -e 's/bytecode\Z/disasm/;'` |perl -w -p -e 's#\A// approximately (\d+) instruction slots used .*?\Z#$1#;' done