(num, src, good)
| 610 | |
| 611 | |
| 612 | def iptcTest(num, src, good): |
| 613 | test_file = '{}.i{}tst'.format(good, num) |
| 614 | src_file = os.path.join(Config.data_dir, src) |
| 615 | good_file = os.path.join(Config.data_dir, '{}.i{}gd'.format(good, num)) |
| 616 | copyTestFile(good, test_file) |
| 617 | Executer('metacopy -ip {src_file} {test_file}', vars()) |
| 618 | return diffCheck(good_file, test_file, in_bytes=True) |
| 619 | |
| 620 | |
| 621 | def printTest(filename): |
nothing calls this directly
no test coverage detected