Summary: Moves lldbsuite tests to lldb/test/API.
This is a largely mechanical change, moved with the following steps:
```
rm lldb/test/API/testcases
mkdir -p lldb/test/API/{test_runner/test,tools/lldb-{server,vscode}}
mv lldb/packages/Python/lldbsuite/test/test_runner/test lldb/test/API/test_runner
for d in $(find lldb/packages/Python/lldbsuite/test/* -maxdepth 0 -type d | egrep -v "make|plugins|test_runner|tools"); do mv $d lldb/test/API; done
for d in $(find lldb/packages/Python/lldbsuite/test/tools/lldb-vscode -maxdepth 1 -mindepth 1 | grep -v ".py"); do mv $d lldb/test/API/tools/lldb-vscode; done
for d in $(find lldb/packages/Python/lldbsuite/test/tools/lldb-server -maxdepth 1 -mindepth 1 | egrep -v "gdbremote_testcase.py|lldbgdbserverutils.py|socket_packet_pump.py"); do mv $d lldb/test/API/tools/lldb-server; done
```
lldb/packages/Python/lldbsuite/__init__.py and lldb/test/API/lit.cfg.py were also updated with the new directory structure.
Reviewers: labath, JDevlieghere
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D71151
77 lines
1.4 KiB
C++
77 lines
1.4 KiB
C++
#include <stdio.h>
|
|
|
|
namespace Foo
|
|
{
|
|
namespace Bar
|
|
{
|
|
class Baz
|
|
{
|
|
public:
|
|
Baz (int value):m_value(value) {}
|
|
int Function ()
|
|
{
|
|
printf ("%s returning: %d.\n", __FUNCTION__, m_value);
|
|
return m_value + 1;
|
|
}
|
|
private:
|
|
int m_value;
|
|
};
|
|
|
|
class Baz2
|
|
{
|
|
public:
|
|
Baz2 (int value):m_value(value) {}
|
|
int Function ()
|
|
{
|
|
printf ("%s returning: %d.\n", __FUNCTION__, m_value);
|
|
return m_value + 2;
|
|
}
|
|
private:
|
|
int m_value;
|
|
};
|
|
|
|
static int bar_value = 20;
|
|
int Function ()
|
|
{
|
|
printf ("%s returning: %d.\n", __FUNCTION__, bar_value);
|
|
return bar_value + 3;
|
|
}
|
|
}
|
|
}
|
|
|
|
class Baz
|
|
{
|
|
public:
|
|
Baz (int value):m_value(value) {}
|
|
int Function ()
|
|
{
|
|
printf ("%s returning: %d.\n", __FUNCTION__, m_value);
|
|
return m_value + 4;
|
|
}
|
|
private:
|
|
int m_value;
|
|
};
|
|
|
|
int
|
|
Function ()
|
|
{
|
|
printf ("I am a global function, I return 333.\n");
|
|
return 333;
|
|
}
|
|
|
|
int main ()
|
|
{
|
|
Foo::Bar::Baz mine(200);
|
|
Foo::Bar::Baz2 mine2(300);
|
|
::Baz bare_baz (500);
|
|
|
|
printf ("Yup, got %d from Baz.\n", mine.Function());
|
|
printf ("Yup, got %d from Baz.\n", mine2.Function());
|
|
printf ("Yup, got %d from Baz.\n", bare_baz.Function());
|
|
printf ("And got %d from Bar.\n", Foo::Bar::Function());
|
|
printf ("And got %d from ::.\n", ::Function());
|
|
|
|
return 0;
|
|
|
|
}
|