This is what I am getting back from 'make check' :- === Summary == # of expected passes 1710 # of unexpected failures 49 # of expected failures 55 Is this normal and "expected" ? Full results attached. Aaron -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: makecheck.txt URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050520/eabbcbc6/attachment.txt>
The unexpected failures is high. Looking at the details, it appears that you have the "space in path" problem. I thought we had this fixed a long time ago, but apparently not. The issue is that the $PATH variable needs to be put in quotes so spaces don't affect interpretation of the command. I'll look into this. Reid. On Fri, 2005-05-20 at 18:26 +0100, Aaron Gray wrote:> This is what I am getting back from 'make check' :- > > === Summary ==> > # of expected passes 1710 > # of unexpected failures 49 > # of expected failures 55 > > Is this normal and "expected" ? > > Full results attached. > > Aaron > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050520/23a3450b/attachment.sig>
Aaron, Can you try this patch for me please. It goes on your test/Makefile file. Patching is done like this: cd test <save Makefile.diff to this directory> patch -p0 < Makefile.diff Then run your "make check" again. Hopefully the # of unexpected failures will drop significantly. Reid. On Fri, 2005-05-20 at 18:26 +0100, Aaron Gray wrote:> This is what I am getting back from 'make check' :- > > === Summary ==> > # of expected passes 1710 > # of unexpected failures 49 > # of expected failures 55 > > Is this normal and "expected" ? > > Full results attached. > > Aaron > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050520/201277a6/attachment.sig>
On Fri, 20 May 2005, Aaron Gray wrote:> This is what I am getting back from 'make check' :- > > # of expected passes 1710 > # of unexpected failures 49 > # of expected failures 55 > > Is this normal and "expected" ?No. From this output: ... Files/ATI: not found ... My guess is that you have "Program Files" in your path. Try taking paths with spaces in them out of your PATH variable. If you need thme, consider replacing them with the progra~1 versions of the directory names... -Chris -- http://nondot.org/sabre/ http://llvm.cs.uiuc.edu/
Aaron, Sorry about the missing patch on the last email. Here's one that I think will actually work. Could you please test this out for us (see below)? If it works, we'll commit it to cvs so cygwin never runs into this problem again. Thanks, Reid. On Fri, 2005-05-20 at 10:53 -0700, Reid Spencer wrote:> Aaron, > > Can you try this patch for me please. It goes on your test/Makefile > file. Patching is done like this: > > cd test > <save Makefile.diff to this directory> > patch -p0 < Makefile.diff > > Then run your "make check" again. Hopefully the # of unexpected failures > will drop significantly. > > Reid. > > On Fri, 2005-05-20 at 18:26 +0100, Aaron Gray wrote: > > This is what I am getting back from 'make check' :- > > > > === Summary ==> > > > # of expected passes 1710 > > # of unexpected failures 49 > > # of expected failures 55 > > > > Is this normal and "expected" ? > > > > Full results attached. > > > > Aaron > > _______________________________________________ > > LLVM Developers mailing list > > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > > http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev-------------- next part -------------- A non-text attachment was scrubbed... Name: Makefile.diff Type: text/x-patch Size: 996 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050520/f1bffff6/attachment.bin> -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050520/f1bffff6/attachment.sig>
>> This is what I am getting back from 'make check' :- >> >> # of expected passes 1710 >> # of unexpected failures 49 >> # of expected failures 55 >> >> Is this normal and "expected" ? > > No. From this output: > > ... > Files/ATI: not found > ... > > My guess is that you have "Program Files" in your path. Try taking paths > with spaces in them out of your PATH variable. If you need thme, consider > replacing them with the progra~1 versions of the directory names...Still getting errors :( PATH="/usr/build/llvm/Debug/bin:/usr/build/llvm/../../src/llvm-1.5/test/Scripts: /usr/llvm-gcc/bin:/usr/build/llvm/debug/bin:/usr/binutils-2.15/bin:/usr/gcc/gcc- 3.4.3:/usr/gcc/gcc-3.4.3:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin" \ /usr/bin/runtest WARNING: Couldn't find the global config file. WARNING: No tool specified Test Run By Aaron Gray on Fri May 20 18:54:37 2005 Native configuration is i686-pc-cygwin === Summary == # of expected passes 1733 # of unexpected failures 49 # of expected failures 56 ~~~ Aaron -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: makecheck.txt URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050520/fe6b2429/attachment.txt>