aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py
blob: 45721dd260d9e00454a12786397f017a8c26044d (plain) (blame)
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
"""
Test the Intel(R) MPX bound violation signal.
"""

from __future__ import print_function


import os
import sys
import time
import re
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil


class RegisterCommandsTestCase(TestBase):

    mydir = TestBase.compute_mydir(__file__)

    @skipIf(compiler="clang")
    @skipIf(oslist=no_match(['linux']))
    @skipIf(archs=no_match(['i386', 'x86_64']))
    @skipIf(oslist=["linux"], compiler="gcc", compiler_version=["<", "5"]) #GCC version >= 5 supports Intel(R) MPX.
    def test_mpx_boundary_violation(self):
        """Test Intel(R) MPX bound violation signal."""
        self.build()
        self.mpx_boundary_violation()

    def mpx_boundary_violation(self):
        exe = os.path.join(os.getcwd(), "a.out")
        self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)

        self.runCmd("run", RUN_SUCCEEDED)

        target = self.dbg.GetSelectedTarget()
        process = target.GetProcess()

        if (process.GetState() == lldb.eStateExited):
            self.skipTest("Intel(R) MPX is not supported.")

        if (process.GetState() == lldb.eStateStopped):
            self.expect("thread backtrace", STOPPED_DUE_TO_SIGNAL,
                        substrs = ['stop reason = signal SIGSEGV: upper bound violation',
                                   'fault address:', 'lower bound:', 'upper bound:'])

        self.runCmd("continue")

        if (process.GetState() == lldb.eStateStopped):
            self.expect("thread backtrace", STOPPED_DUE_TO_SIGNAL,
                        substrs = ['stop reason = signal SIGSEGV: lower bound violation',
                                   'fault address:', 'lower bound:', 'upper bound:'])

        self.runCmd("continue")
        self.assertTrue(process.GetState() == lldb.eStateExited,
                        PROCESS_EXITED)