Test -cl with an unknown additional argument.
(self)
| 1657 | self.exec(cmd) |
| 1658 | |
| 1659 | def test_cl_bad_argument(self) -> None: |
| 1660 | ''' |
| 1661 | Test -cl with an unknown additional argument. |
| 1662 | ''' |
| 1663 | # Build an otherwise valid cmd with the test flaw |
| 1664 | cmd = [ |
| 1665 | self.binary, '-cl', |
| 1666 | self.get_ref_image_path('LDR', 'input', 'A'), |
| 1667 | self.get_tmp_image_path('LDR', 'comp'), |
| 1668 | '4x4', '-fast', '-unknown'] |
| 1669 | |
| 1670 | self.exec(cmd) |
| 1671 | |
| 1672 | def test_cl_2d_block_with_array(self) -> None: |
| 1673 | ''' |
nothing calls this directly
no test coverage detected