[Lldb-commits] [lldb] r236410 - TestCModules - fixed for gcc

Vince Harron vince at nethacker.com
Sun May 3 23:26:14 PDT 2015


Author: vharron
Date: Mon May  4 01:26:13 2015
New Revision: 236410

URL: http://llvm.org/viewvc/llvm-project?rev=236410&view=rev
Log:
TestCModules - fixed for gcc

Changed restrict keyword to something understood by gcc


Modified:
    lldb/trunk/test/lang/c/modules/main.c
    lldb/trunk/test/lldbinline.py

Modified: lldb/trunk/test/lang/c/modules/main.c
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/modules/main.c?rev=236410&r1=236409&r2=236410&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/modules/main.c (original)
+++ lldb/trunk/test/lang/c/modules/main.c Mon May  4 01:26:13 2015
@@ -1,6 +1,6 @@
 #include <stdlib.h>
 
-int printf(const char * restrict format, ...);
+int printf(const char * __restrict format, ...);
 
 typedef struct {
     int a;

Modified: lldb/trunk/test/lldbinline.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbinline.py?rev=236410&r1=236409&r2=236410&view=diff
==============================================================================
--- lldb/trunk/test/lldbinline.py (original)
+++ lldb/trunk/test/lldbinline.py Mon May  4 01:26:13 2015
@@ -121,7 +121,6 @@ class InlineTest(TestBase):
         self.buildDsym()
         self.do_test()
 
-    @expectedFailureGcc #xfail to get buildbot green, test failed with gcc4.8.2
     def __test_with_dwarf(self):
         self.using_dsym = False
         self.BuildMakefile()





More information about the lldb-commits mailing list