[llvm-testresults] Red bots at night, buildczar's delight?

John McCall rjmccall at apple.com
Wed Nov 17 01:02:16 PST 2010


On Nov 16, 2010, at 9:05 PM, Dale Johannesen wrote:

> Well the Buildczar has spent the day unproductively fighting with some Prerelease software, but now that I've gotten around to looking at the bots:
> 
> clang-i386-darwin10 running the gcc testsuite developed 5 new failures (there are others, claimed by Rafael but not fixed) in the range 119343-119345 (build 1625).  That's Chandler and John; all the patches look unrelated to the failures to me, but obviously one of them isn't. 

gcc.apple/default-x86_64-sse3.c has:
  #include <pmmintrin.h>
Clang's pmmintrin.h has:
  #include <emmintrin.h>
Clang's emmintrin.h has:
  #include <xmmintrin.h>
Clang's xmmintrin.h has:
  #include <mm_malloc.h>

gcc's mm_malloc.h has:
  #include <stdlib.h>

After r119343, Clang's mm_malloc.h has:
  #include <stddef.h>

The test case contains a (spurious) call to exit().  Cue clang warning about exit() not being declared and dejagnu complaining about extra "errors".

Not sure how best to resolve this one.  Maybe the test suite should suppress this warning like it does several others?  Maybe we should never change what's included by the builtin headers?  Anyway, not it.

John.



More information about the llvm-testresults mailing list