Fix expectation in TestDataFormatterSynth

The value of some_values (pointer) expeced to start by 0x0 but nothing
requires that the first digit of the address be '0'.

This CL change the expectation to check only for a value starting with 0x.

llvm-svn: 232163
This commit is contained in:
Tamas Berghammer 2015-03-13 11:59:58 +00:00
parent e95a49118c
commit 457ecce23d
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ class SynthDataFormatterTestCase(TestBase):
# skip synthetic children
self.expect('frame variable plenty_of_stuff --synthetic-type no',
substrs = ['some_values = 0x0',
substrs = ['some_values = 0x',
'array = 0x',
'array_size = 5'])