Making the buildbot happy again after changes to the default formatter for char[]

llvm-svn: 178295
diff --git a/lldb/test/lang/c/strings/TestCStrings.py b/lldb/test/lang/c/strings/TestCStrings.py
index 481f8b0..c549f0a 100644
--- a/lldb/test/lang/c/strings/TestCStrings.py
+++ b/lldb/test/lang/c/strings/TestCStrings.py
@@ -52,11 +52,13 @@
         self.expect("expression -- \"\"[0]",
                     startstr = "(const char) $4 = '\\0'")
 
-        self.expect("p \"hello\"",
-            substrs = ['[6]) $', 'hello',
-                       '[0] = \'h\'',
+        self.expect("expr --raw -- \"hello\"",
+            substrs = ['[0] = \'h\'',
                        '[5] = \'\\0\''])
 
+        self.expect("p \"hello\"",
+            substrs = ['[6]) $', 'hello'])
+
         self.expect("p (char*)\"hello\"",
                     substrs = ['(char *) $', ' = 0x',
                                'hello'])