mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-14 10:06:06 +00:00

Summary: This patch implements a unified way of cleaning the build folder of each test. This is done by completely removing the build folder before each test, in the respective setUp() method. Previously, we were using a combination of several methods, each with it's own drawbacks: - nuking the entire build tree before running dotest: the issue here is that this did not take place if you ran dotest manually - running "make clean" before the main "make" target: this relied on the clean command being correctly implemented. This was usually true, but not always. - for files which were not produced by make, each python file was responsible for ensuring their deleting, using a variety of methods. With this approach, the previous methods become redundant. I remove the first two, since they are centralized. For the other various bits of clean-up code in python files, I indend to delete it when I come across it. Reviewers: aprantl Subscribers: emaste, ki.stfu, mgorny, eraman, lldb-commits Differential Revision: https://reviews.llvm.org/D44526 llvm-svn: 327703
24 lines
742 B
Python
24 lines
742 B
Python
""" Testing separate debug info loading for base binary with a symlink. """
|
|
import os
|
|
import time
|
|
import lldb
|
|
import sys
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test import lldbutil
|
|
|
|
|
|
class TestTargetSymbolsSepDebugSymlink(TestBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
@no_debug_info_test # Prevent the genaration of the dwarf version of this test
|
|
@skipUnlessPlatform(['linux'])
|
|
@skipIf(hostoslist=["windows"])
|
|
@skipIfRemote # llvm.org/pr36237
|
|
def test_target_symbols_sepdebug_symlink_case(self):
|
|
self.build()
|
|
exe = self.getBuildArtifact("dirsymlink/stripped.symlink")
|
|
|
|
lldbutil.run_to_name_breakpoint(self, "main", exe_name = exe)
|