Re: [testsuite] Disabling gcc.dg/cpp/trad/include.c for Android

2013-05-23 Thread Kirill Yukhin
Checked into trunk: http://gcc.gnu.org/ml/gcc-cvs/2013-05/msg00770.html Thanks, K On Tue, Apr 30, 2013 at 10:24 AM, Alexander Ivchenko wrote: > 2013/4/29 Mike Stump : >> On Jan 9, 2013, at 7:14 AM, Alexander Ivchenko wrote: >>> We have test fail for gcc.dg/cpp/trad/include.c on Android. The >>

Re: [testsuite] Disabling gcc.dg/cpp/trad/include.c for Android

2013-04-29 Thread Alexander Ivchenko
2013/4/29 Mike Stump : > On Jan 9, 2013, at 7:14 AM, Alexander Ivchenko wrote: >> We have test fail for gcc.dg/cpp/trad/include.c on Android. The >> reason for that is that >> -ftraditional-cpp is not expected to work on Android due to variadic >> macro (like #define __builtin_warning(x, y...)) >

Re: [testsuite] Disabling gcc.dg/cpp/trad/include.c for Android

2013-04-29 Thread Mike Stump
On Jan 9, 2013, at 7:14 AM, Alexander Ivchenko wrote: > We have test fail for gcc.dg/cpp/trad/include.c on Android. The > reason for that is that > -ftraditional-cpp is not expected to work on Android due to variadic > macro (like #define __builtin_warning(x, y...)) > in standard headers and trad

Re: [testsuite] Disabling gcc.dg/cpp/trad/include.c for Android

2013-04-29 Thread Alexander Ivchenko
*ping* thanks, Alexander 2013/3/26 Alexander Ivchenko : > Hi, > > Could you please take a look at the attached fixinclude patch > that addresses the problem: > > " We have test fail for gcc.dg/cpp/trad/include.c on Android. The > reason for that is that > -ftraditional-cpp is not expected to wor

Re: [testsuite] Disabling gcc.dg/cpp/trad/include.c for Android

2013-03-26 Thread Alexander Ivchenko
Hi, Could you please take a look at the attached fixinclude patch that addresses the problem: " We have test fail for gcc.dg/cpp/trad/include.c on Android. The reason for that is that -ftraditional-cpp is not expected to work on Android due to variadic macro (like #define __builtin_warning(x, y.

Re: [testsuite] Disabling gcc.dg/cpp/trad/include.c for Android

2013-01-09 Thread Andrew Pinski
On Wed, Jan 9, 2013 at 7:14 AM, Alexander Ivchenko wrote: > Hi, > > We have test fail for gcc.dg/cpp/trad/include.c on Android. The > reason for that is that > -ftraditional-cpp is not expected to work on Android due to variadic > macro (like #define __builtin_warning(x, y...)) > in standard hea

[testsuite] Disabling gcc.dg/cpp/trad/include.c for Android

2013-01-09 Thread Alexander Ivchenko
Hi, We have test fail for gcc.dg/cpp/trad/include.c on Android. The reason for that is that -ftraditional-cpp is not expected to work on Android due to variadic macro (like #define __builtin_warning(x, y...)) in standard headers and traditional preprocessor cannot handle them. The attached pat