xref: /llvm-project/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.h (revision 2946cd701067404b99c39fb29dc9c74bd7193eb3)
1c946d462SZachary Turner //===-- PythonTestSuite.cpp -------------------------------------*- C++ -*-===//
2c946d462SZachary Turner //
3*2946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*2946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
5*2946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6c946d462SZachary Turner //
7c946d462SZachary Turner //===----------------------------------------------------------------------===//
8c946d462SZachary Turner 
9c946d462SZachary Turner #include "gtest/gtest.h"
10c946d462SZachary Turner 
11c946d462SZachary Turner using namespace lldb_private;
12c946d462SZachary Turner 
13b9c1b51eSKate Stone class PythonTestSuite : public testing::Test {
14c946d462SZachary Turner public:
15b9c1b51eSKate Stone   void SetUp() override;
16c946d462SZachary Turner 
17b9c1b51eSKate Stone   void TearDown() override;
18c946d462SZachary Turner 
19c946d462SZachary Turner private:
20c946d462SZachary Turner   PyGILState_STATE m_gil_state;
21c946d462SZachary Turner };
22