summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/platform/file/read/TestPlatformFileRead.py
blob: 257f9c34e5d9197bc44327c9d890b95630f59c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil


class TestCase(TestBase):
    @no_debug_info_test
    def test_file_close_invalid_arg(self):
        self.expect(
            "platform file read y",
            error=True,
            substrs=["'y' is not a valid file descriptor."],
        )
        # 'file read' takes an option, so this will be treated as an option.
        self.expect(
            "platform file read -1", error=True, substrs=["unknown or ambiguous option"]
        )