(num, src, good)
| 601 | |
| 602 | |
| 603 | def copyTest(num, src, good): |
| 604 | test_file = '{}.c{}tst'.format(good, num) |
| 605 | src_file = os.path.join(Config.data_dir, src) |
| 606 | good_file = os.path.join(Config.data_dir, '{}.c{}gd'.format(good, num)) |
| 607 | copyTestFile(good, test_file) |
| 608 | Executer('metacopy -a {src_file} {test_file}', vars()) |
| 609 | return diffCheck(good_file, test_file, in_bytes=True) |
| 610 | |
| 611 | |
| 612 | def iptcTest(num, src, good): |
nothing calls this directly
no test coverage detected