blob: 993f7f90d97c077961c7a937d7ecbc586da3cda1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// Use the umbrella header for -Wdocumentation.
#include "lldb/API/LLDB.h"
#include "TestingSupport/SubsystemRAII.h"
#include "lldb/API/SBBreakpoint.h"
#include "lldb/API/SBBreakpointLocation.h"
#include "lldb/API/SBDebugger.h"
#include "lldb/API/SBTarget.h"
#include "gtest/gtest.h"
#include <memory>
#include <mutex>
using namespace lldb_private;
using namespace lldb;
class BreakpointClearConditionTest : public ::testing::Test {
public:
void SetUp() override {
m_sb_debugger = SBDebugger::Create(/*source_init_files=*/false);
};
void TearDown() override { SBDebugger::Destroy(m_sb_debugger); }
SBDebugger m_sb_debugger;
SubsystemRAII<lldb::SBDebugger> subsystems;
};
template <typename T> void test_condition(T sb_object) {
const char *in_cond_str = "Here is a condition";
sb_object.SetCondition(in_cond_str);
// Make sure we set the condition correctly:
const char *out_cond_str = sb_object.GetCondition();
EXPECT_STREQ(in_cond_str, out_cond_str);
// Now unset it by passing in nullptr and make sure that works:
const char *empty_tokens[2] = {nullptr, ""};
for (auto token : empty_tokens) {
sb_object.SetCondition(token);
out_cond_str = sb_object.GetCondition();
// And make sure an unset condition returns nullptr:
EXPECT_EQ(nullptr, out_cond_str);
}
}
TEST_F(BreakpointClearConditionTest, BreakpointClearConditionTest) {
// Create target
SBTarget sb_target;
SBError error;
sb_target =
m_sb_debugger.CreateTarget("", "x86_64-apple-macosx-", "remote-macosx",
/*add_dependent=*/false, error);
EXPECT_EQ(sb_target.IsValid(), true);
// Create breakpoint
SBBreakpoint sb_breakpoint = sb_target.BreakpointCreateByAddress(0xDEADBEEF);
test_condition(sb_breakpoint);
// Address breakpoints always have one location, so we can also use this
// to test the location:
SBBreakpointLocation sb_loc = sb_breakpoint.GetLocationAtIndex(0);
EXPECT_EQ(sb_loc.IsValid(), true);
test_condition(sb_loc);
}
|