File: TestMemoryAllocSettings.py

package info (click to toggle)
llvm-toolchain-18 1%3A18.1.8-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,908,340 kB
  • sloc: cpp: 6,667,937; ansic: 1,440,452; asm: 883,619; python: 230,549; objc: 76,880; f90: 74,238; lisp: 35,989; pascal: 16,571; sh: 10,229; perl: 7,459; ml: 5,047; awk: 3,523; makefile: 2,987; javascript: 2,149; xml: 892; fortran: 649; cs: 573
file content (38 lines) | stat: -rw-r--r-- 1,384 bytes parent folder | download | duplicates (8)
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
"""
Test changing setting for expression memory allocation.
"""

import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil


class TestMemoryAllocSettings(TestBase):
    def test(self):
        """Test changing settings for expression memory allocation."""
        self.build()
        target = self.createTestTarget()

        self.log_file = self.getBuildArtifact("log-expr.txt")

        self.runCmd("settings set target.expr-alloc-address 0xdead0000")
        self.runCmd("settings set target.expr-alloc-size 10000")
        self.runCmd("settings set target.expr-alloc-align 0x1000")

        self.runCmd("log enable lldb expr -f " + self.log_file)
        self.runCmd("expression -- int foo; &foo")

        self.assertTrue(os.path.isfile(self.log_file))
        with open(self.log_file, "r") as f:
            log = f.read()

        alloc0 = re.search("^.*IRMemoryMap::Malloc.+?0xdead0000.*$", log, re.MULTILINE)
        # Malloc adds additional bytes to allocation size, hence 10007
        alloc1 = re.search(
            "^.*IRMemoryMap::Malloc\s*?\(10007.+?0xdead1000.*$", log, re.MULTILINE
        )
        self.assertTrue(alloc0, "Couldn't find an allocation at a given address.")
        self.assertTrue(
            alloc1, "Couldn't find an allocation of a given size at a given address."
        )