blob: 056b4e378a18be659342ea3cfb765c396941a59d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 close y", error=True,
substrs=["'y' is not a valid file descriptor."])
self.expect("platform file close -1", error=True,
substrs=["'-1' is not a valid file descriptor."])
|