diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 | 
| commit | 88c643b6fec27eec436c8d138fee6346e92337d6 (patch) | |
| tree | 82cd13b2f3cde1c9e5f79689ba4e6ba67694843f /packages/Python/lldbsuite/test/lang/cpp/overloaded-functions | |
| parent | 94994d372d014ce4c8758b9605d63fae651bd8aa (diff) | |
Notes
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/cpp/overloaded-functions')
5 files changed, 0 insertions, 104 deletions
diff --git a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile b/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile deleted file mode 100644 index a8d5c4eb0268..000000000000 --- a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -LEVEL = ../../../make - -CXX_SOURCES := main.cpp static-a.cpp static-b.cpp - -include $(LEVEL)/Makefile.rules diff --git a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py b/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py deleted file mode 100644 index ad969ef3d088..000000000000 --- a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -Tests that functions with the same name are resolved correctly. -""" - -import lldb -from lldbsuite.test.decorators import * -from lldbsuite.test.lldbtest import * -from lldbsuite.test import lldbutil - - -class OverloadedFunctionsTestCase(TestBase): - -    mydir = TestBase.compute_mydir(__file__) - -    def setUp(self): -        TestBase.setUp(self) -        self.line = line_number('main.cpp', '// breakpoint') - -    def test_with_run_command(self): -        """Test that functions with the same name are resolved correctly""" -        self.build() -        self.runCmd("file " + self.getBuildArtifact("a.out"), CURRENT_EXECUTABLE_SET) - -        lldbutil.run_break_set_by_file_and_line( -            self, "main.cpp", self.line, num_expected_locations=1, loc_exact=True) - -        self.runCmd("process launch", RUN_SUCCEEDED) - -        # The stop reason of the thread should be breakpoint. -        self.expect("thread list", -                    STOPPED_DUE_TO_BREAKPOINT, -                    substrs=['stopped', 'stop reason = breakpoint']) - -        self.expect("expression -- Dump(myB)", -                    startstr="(int) $0 = 2") - -        self.expect("expression -- Static()", -                    startstr="(int) $1 = 1") diff --git a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/main.cpp b/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/main.cpp deleted file mode 100644 index 250e2cd1d96c..000000000000 --- a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/main.cpp +++ /dev/null @@ -1,43 +0,0 @@ -#include <stdio.h> - -struct A { -    int aa; -    char ab; -}; - -struct B { -    int ba; -    int bb; -}; - -struct C { -    int ca; -    int cb; -}; - -int Dump (A &a) -{ -    return 1; -} - -int Dump (B &b) -{ -    return 2; -} - -int Dump (C &c) -{ -    return 3; -} - -extern int CallStaticA(); -extern int CallStaticB(); - -int main() -{ -    A myA; -    B myB; -    C myC; - -    printf("%d\n", CallStaticA() + CallStaticB()); // breakpoint -} diff --git a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-a.cpp b/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-a.cpp deleted file mode 100644 index 7250fa4bed5e..000000000000 --- a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-a.cpp +++ /dev/null @@ -1,9 +0,0 @@ -static int Static() -{ -  return 1; -} - -int CallStaticA() -{ -  return Static(); -} diff --git a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp b/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp deleted file mode 100644 index 90a20f69e6db..000000000000 --- a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp +++ /dev/null @@ -1,9 +0,0 @@ -static int Static() -{ -  return 1; -} - -int CallStaticB() -{ -  return Static(); -}  | 
