Test -cl with an unknown output file extension.
(self)
| 1600 | self.exec(cmd) |
| 1601 | |
| 1602 | def test_cl_unknown_output(self) -> None: |
| 1603 | ''' |
| 1604 | Test -cl with an unknown output file extension. |
| 1605 | ''' |
| 1606 | # Build an otherwise valid cmd with the test flaw |
| 1607 | cmd = [ |
| 1608 | self.binary, '-cl', |
| 1609 | self.get_ref_image_path('LDR', 'input', 'A'), |
| 1610 | './test.aastc', |
| 1611 | '4x4', '-fast'] |
| 1612 | |
| 1613 | self.exec(cmd) |
| 1614 | |
| 1615 | def test_cl_bad_block_size(self) -> None: |
| 1616 | ''' |
nothing calls this directly
no test coverage detected