Skip to content

Commit b05a37f

Browse files
author
Tamas Berghammer
committedApr 6, 2016
Fix and xfail TestRegisterVariables after rL265498
llvm-svn: 265527
1 parent 790b540 commit b05a37f

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed
 

‎lldb/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile

+1-7
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ LEVEL = ../../../make
22

33
C_SOURCES := test.c
44

5-
CFLAGS := -g -O1
6-
7-
$(info OS: $(OS))
8-
HOST_OS = $(shell uname -s)
9-
ifeq "$(HOST_OS)" "Darwin"
10-
FRAMEWORK_INCLUDES = -isysroot $(shell xcrun -show-sdk-path)
11-
endif
5+
CFLAGS_EXTRAS += -O1
126

137
include $(LEVEL)/Makefile.rules

‎lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ class RegisterVariableTestCase(TestBase):
9292

9393

9494
@expectedFailureAll(compiler="clang", compiler_version=['<', '3.5'])
95-
@expectedFailureAll(compiler="gcc", compiler_version=['=', '4.8.2'])
95+
@expectedFailureAll(compiler="gcc", compiler_version=['>=', '4.8.2'])
96+
@expectedFailureAll(oslist="linux", archs="i386")
9697
def test_and_run_command(self):
9798
"""Test expressions on register values."""
9899

0 commit comments

Comments
 (0)