diff options
author | Siva Chandra <sivachandra@google.com> | 2016-02-09 02:18:50 +0000 |
---|---|---|
committer | Siva Chandra <sivachandra@google.com> | 2016-02-09 02:18:50 +0000 |
commit | 4a33ab7b2cc3a396b41ce2c0710ad08213f4792e (patch) | |
tree | 3f21c5523faa6c78476a0dbce14b116686a24cbb /lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py | |
parent | 9b28a4559eb5c1f61501422c916469cc8f611fad (diff) | |
download | bcm5719-llvm-4a33ab7b2cc3a396b41ce2c0710ad08213f4792e.tar.gz bcm5719-llvm-4a33ab7b2cc3a396b41ce2c0710ad08213f4792e.zip |
[TestExprsChar] Fix a typo is failure archs list
Reviewers: zturner
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D17014
llvm-svn: 260192
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py b/lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py index 36908f05994..efc49133f18 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py @@ -62,7 +62,7 @@ class ExprCharTestCase(TestBase): def test_signed_char(self): self.do_test(dictionary={'CFLAGS_EXTRAS': '-fsigned-char'}) - @expectedFailureAll(archs=["i[3-6]86", "x86_x64"], bugnumber="llvm.org/pr23069") + @expectedFailureAll(archs=["i[3-6]86", "x86_64"], bugnumber="llvm.org/pr23069") @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr21765") @expectedFailureAll(triple = 'mips*', bugnumber="llvm.org/pr23069") def test_unsigned_char(self): |