[Lldb-commits] [lldb] r357313 - [ScriptInterpreterPython] Fix the unit test after refactor
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 29 13:56:53 PDT 2019
Author: jdevlieghere
Date: Fri Mar 29 13:56:52 2019
New Revision: 357313
URL: http://llvm.org/viewvc/llvm-project?rev=357313&view=rev
Log:
[ScriptInterpreterPython] Fix the unit test after refactor
Modified:
lldb/trunk/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
Modified: lldb/trunk/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp?rev=357313&r1=357312&r2=357313&view=diff
==============================================================================
--- lldb/trunk/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp (original)
+++ lldb/trunk/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp Fri Mar 29 13:56:52 2019
@@ -9,6 +9,7 @@
#include "gtest/gtest.h"
#include "Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h"
+#include "Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h"
#include "Plugins/ScriptInterpreter/Python/lldb-python.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Host/HostInfo.h"
@@ -16,10 +17,10 @@
#include "PythonTestSuite.h"
using namespace lldb_private;
-class TestScriptInterpreterPython : public ScriptInterpreterPython {
+class TestScriptInterpreterPython : public ScriptInterpreterPythonImpl {
public:
- using ScriptInterpreterPython::Initialize;
- using ScriptInterpreterPython::InitializePrivate;
+ using ScriptInterpreterPythonImpl::Initialize;
+ using ScriptInterpreterPythonImpl::InitializePrivate;
};
void PythonTestSuite::SetUp() {
More information about the lldb-commits
mailing list