mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 14:28:54 -04:00

Summary: The changes here fall into several categories. - some tests were redirecting inferior stdout/err to a file. For these I make sure we use an absolute path for the file. I also create a lldbutil.read_file_on_target helper function to encapsulate the differences between reading a file locally and remotely. - some tests were redirecting the pexpect I/O into a file. For these I use a python StringIO object to avoid creating a file altogether. - the TestSettings inferior was creating a file. Here, I make sure the inferior is launched with pwd=build-dir so that the files end up created there. - lldb-mi --log (used by some tests) creates a log file in PWD without the ability say differently. To make this work I make sure to run lldb-mi with PWD=build_dir. This in turn necessitated a couple of changes in other lldb-mi tests, which were using relative paths to access the source tree. Reviewers: aprantl Subscribers: ki.stfu, mehdi_amini, lldb-commits Differential Revision: https://reviews.llvm.org/D44159 llvm-svn: 327625
83 lines
3.1 KiB
Python
83 lines
3.1 KiB
Python
"""
|
|
Test lldb-mi -file-xxx commands.
|
|
"""
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
import lldbmi_testcase
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test import lldbutil
|
|
|
|
|
|
class MiFileTestCase(lldbmi_testcase.MiTestCaseBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
|
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
|
@skipIfRemote # We do not currently support remote debugging via the MI.
|
|
def test_lldbmi_file_exec_and_symbols_file(self):
|
|
"""Test that 'lldb-mi --interpreter' works for -file-exec-and-symbols exe."""
|
|
|
|
self.spawnLldbMi(args=None)
|
|
|
|
# Test that -file-exec-and-symbols works for filename
|
|
self.runCmd("-file-exec-and-symbols %s" % self.myexe)
|
|
self.expect("\^done")
|
|
|
|
# Run
|
|
self.runCmd("-exec-run")
|
|
self.expect("\^running")
|
|
self.expect("\*stopped,reason=\"exited-normally\"")
|
|
|
|
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
|
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
|
@skipIfRemote # We do not currently support remote debugging via the MI.
|
|
def test_lldbmi_file_exec_and_symbols_absolute_path(self):
|
|
"""Test that 'lldb-mi --interpreter' works for -file-exec-and-symbols fullpath/exe."""
|
|
|
|
self.spawnLldbMi(args=None)
|
|
|
|
# Test that -file-exec-and-symbols works for absolute path
|
|
self.runCmd("-file-exec-and-symbols \"%s\"" % self.myexe)
|
|
self.expect("\^done")
|
|
|
|
# Run
|
|
self.runCmd("-exec-run")
|
|
self.expect("\^running")
|
|
self.expect("\*stopped,reason=\"exited-normally\"")
|
|
|
|
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
|
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
|
@skipIfRemote # We do not currently support remote debugging via the MI.
|
|
def test_lldbmi_file_exec_and_symbols_relative_path(self):
|
|
"""Test that 'lldb-mi --interpreter' works for -file-exec-and-symbols relpath/exe."""
|
|
|
|
self.spawnLldbMi(args=None)
|
|
|
|
# Test that -file-exec-and-symbols works for relative path
|
|
import os
|
|
path = os.path.relpath(self.myexe, self.getBuildDir())
|
|
self.runCmd("-file-exec-and-symbols %s" % path)
|
|
self.expect("\^done")
|
|
|
|
# Run
|
|
self.runCmd("-exec-run")
|
|
self.expect("\^running")
|
|
self.expect("\*stopped,reason=\"exited-normally\"")
|
|
|
|
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
|
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
|
@skipIfRemote # We do not currently support remote debugging via the MI.
|
|
def test_lldbmi_file_exec_and_symbols_unknown_path(self):
|
|
"""Test that 'lldb-mi --interpreter' works for -file-exec-and-symbols badpath/exe."""
|
|
|
|
self.spawnLldbMi(args=None)
|
|
|
|
# Test that -file-exec-and-symbols fails on unknown path
|
|
path = "unknown_dir/%s" % self.myexe
|
|
self.runCmd("-file-exec-and-symbols %s" % path)
|
|
self.expect("\^error")
|