Test -cl with a missing input file.
(self)
| 1548 | self.exec_with_omit(cmd, 2) |
| 1549 | |
| 1550 | def test_cl_missing_input(self) -> None: |
| 1551 | ''' |
| 1552 | Test -cl with a missing input file. |
| 1553 | ''' |
| 1554 | # Build a valid cmd with a missing input file |
| 1555 | cmd = [ |
| 1556 | self.binary, '-cl', |
| 1557 | './Test/Data/missing.png', |
| 1558 | self.get_tmp_image_path('LDR', 'comp'), |
| 1559 | '4x4', '-fast'] |
| 1560 | |
| 1561 | self.exec(cmd) |
| 1562 | |
| 1563 | def test_cl_missing_input_array_slice(self) -> None: |
| 1564 | ''' |
nothing calls this directly
no test coverage detected