Regression tests now include printing the image type for each test.

* Added gimp_composite_addition_va8_va8_va8_mmx():
* Regression tests now include printing the image type for each test.
* Regenerated
This commit is contained in:
Helvetix Victorinox
2004-09-02 02:46:31 +00:00
parent 8959450c2f
commit 072bd88d4f
9 changed files with 157 additions and 140 deletions

View File

@ -350,10 +350,10 @@ def gimp_composite_regression(fpout, function_tables, options):
print >>fpout, ' if (gimp_composite_regression_compare_contexts ("%s", &generic_ctx, &special_ctx))' % (mode_name(mode))
print >>fpout, ' {'
print >>fpout, ' printf("%s failed\\n");' % (mode_name(mode))
print >>fpout, ' printf("%s_%s_%s_%s failed\\n");' % (mode_name(mode), pixel_depth_name(A), pixel_depth_name(B), pixel_depth_name(D))
print >>fpout, ' return (1);'
print >>fpout, ' }'
print >>fpout, ' gimp_composite_regression_timer_report ("%s", ft0, ft1);' % (mode_name(mode))
print >>fpout, ' gimp_composite_regression_timer_report ("%s_%s_%s_%s", ft0, ft1);' % (mode_name(mode), pixel_depth_name(A), pixel_depth_name(B), pixel_depth_name(D))
pass
pass
pass