Displaying 20 results from an estimated 7000 matches similar to: "[LLVMdev] Problems with test-suite"
2011 Jan 13
2
[LLVMdev] About test suits
Hi sir,
I have built the test suits in following steps:
0. $cd LLVM_GCC_DIR; $gunzip --stdout llvm-gcc-4.2-*version*-*
platform*.tar.gz | tar -xvf -
1. $cd SRC_DIR/llvm-2.8/projects
2. $svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite
3.$cd OBJ_DIR; 4. $SRC_DIR/configure --prefix=INS_DIR --enable-debug-runtime
--disable-optimized --enable-debug-symbols
2011 Jan 14
2
[LLVMdev] About test suits Cont
[qali at qali test-suite]$ make VERBOSE=1
if [ ! -f SingleSource/Makefile ]; \
then \
/home/qali/Src/llvm-2.8/autoconf/mkinstalldirs SingleSource; \
cp /home/qali/Src/llvm-2.8/projects/test-suite/SingleSource/Makefile
SingleSource/Makefile; \
fi; \
make -C SingleSource all
make[1]: Entering directory
`/home/qali/build/llvm-2.8-rev/projects/test-suite/SingleSource'
if [ ! -f UnitTests/Makefile
2011 Jan 12
1
[LLVMdev] About test suits
I have built and configured the test suits as told at
http://llvm.org/docs/TestingGuide.html#testsuite.
The llvm is built with configuration:
SRC_DIR/configure --prefix=INS_DIR --enable-debug-runtime
--disable-optimized --enable-debug-symbols --enable-assertions
This configuration is used again in the re-configure process. However, after
the re-configure process, the following "make"
2009 Mar 28
0
[LLVMdev] LLVM test-suite
2009/3/28 John Mosby <ojomojo at gmail.com>
> Thanks Duncan,
> I figured it out after a couple of tries, but the docs are not as clear as
> your instructions. If there's no specific maintainer of TestingGuide.html,
> I'd be happy to update the docs to be as clear as your instructions.
>
> llvm/projects/Makefile filters out "test-suite" and
2009 Feb 23
3
[LLVMdev] how to build llvm-test in separate directory
On Mon, Feb 23, 2009 at 6:32 PM, John Criswell <criswell at cs.uiuc.edu> wrote:
> Aaron Gray wrote:
> > I am trying to build llvm-test in a separate directory to the main llvm
> tree.
> >
> > I have put llvm and llvm-gcc's bin directories on the path but think I am
> missing a switch on the configure command.
> >
> You need to use --with-llvmsrc and
2009 Feb 07
3
[LLVMdev] Problem Running llvm-suite
Hi,
I'm trying to run the tests in llvm-suite, but I've run into trouble.
First, I had the llvm-suite checkout in a directory alongside the llvm
compiler checkout, but, when I ran "make" from llvm-suite, it complained
about there not being a Makefile two levels above it, so I moved
llvm-suite into the "test" subdirectory inside the llvm compiler
checkout. I ran
2013 Feb 18
2
[LLVMdev] Problem to run SPEC2006
Dear LLVMers,
I am having trouble to run SPEC2006. I have checked in my log file that the
spec root has been correctly found with ./configure, but when I try:
make TEST=simple
in the External folder I get the following error:
make -C /home/izabela/svn_llvm/llvm/projects/test-suite/tools all \
ORIGINAL_CC="clang" \
ORIGINAL_CXX="clang"
make[1]: Entering directory
2011 Nov 09
3
[LLVMdev] [cfe-dev] LLVM 3.0rc3 Testing Beginning
Eric Christopher <echristo at apple.com> writes:
> On Nov 8, 2011, at 7:20 PM, David A. Greene wrote:
>
> I couldn't figure out how to run the test-suite. Are there up-to-date
> instructions somewhere? llvm-gcc doesn't exist anymore...
>
> Easiest is to check out the test-suite branch into projects and then after you configure and build from the top
2009 Dec 12
4
[LLVMdev] Problem running 2.6 test-suite on cygwin
After following all steps from
http://llvm.org/docs/TestingGuide.html#testsuiterun, I've got this:
make[1]: Entering directory
`/cygdrive/c/projects/thesis/llvm-suite-2.6/llvm-2.6/projects/test-suite/SingleSource'
make[2]: Entering directory
`/cygdrive/c/projects/thesis/llvm-suite-2.6/llvm-2.6/projects/test-suite/SingleSource/UnitTests'
make[3]: Entering directory
2011 Apr 30
2
[LLVMdev] Greedy register allocation
Perhaps you noticed that LLVM gained a new optimizing register allocator yesterday (r130568). Linear scan is going away, and RAGreedy is the new default for optimizing builds.
Hopefully, you noticed because your binaries were suddenly 2% smaller and 10% faster*. Some noticed because LLVM started crashing or miscompiling their code. Greedy replaces a fairly big chunk of the code generator, so
2009 Mar 23
2
[LLVMdev] Problem Compiling Test-suite
Hello, I am new in using llvm so I would like to get some help on how to compile test-suite.
Assumptions:
llvm is in /llvm directory
llvm-gcc is in /llvm-4.2-2.4-x86-linux-RHEL4/bin
I have tried compiling test-suite and I get the following error:
$make
make[1]: Entering directory '/llvm/projects/test-suite/SingleSource'
make[2]: Entering directory
2013 Feb 18
0
[LLVMdev] Problem to run SPEC2006
I can't really tell what is happening based on this output, but 'make' is not the right way
to build SPECcpu2006 components. You need to do either by using the supplied 'runspec'
command with '-build' action directive or to issue the 'specmake' (which is a
make adjusted by spec.org) on the build component folder.
I can build 433.milc on PPC64 with clang without
2013 Feb 19
1
[LLVMdev] Problem to run SPEC2006
Actually I am trying to run SPEC2006 through the Makefiles provided with
LLVM Test Suite, so I think it should work properly...
On 18 February 2013 15:49, Adhemerval Zanella
<azanella at linux.vnet.ibm.com>wrote:
> I can't really tell what is happening based on this output, but 'make' is
> not the right way
> to build SPECcpu2006 components. You need to do either by
2011 Jan 14
0
[LLVMdev] About test suits Cont
On Jan 13, 2011, at 6:22 PM, Qingan Li wrote:
> make[4]: Entering directory `/home/qali/build/llvm-2.8-rev/projects/test-suite/SingleSource/UnitTests/Vector/SSE'
> /home/qali/Src/llvm-2.8/autoconf/mkinstalldirs Output > /dev/null
> /home/qali/build/llvm-gcc4.2-2.8-x86_64-linux/bin/llvm-gcc -I/home/qali/build/llvm-2.8-rev/projects/test-suite/SingleSource/UnitTests/Vector/SSE
2007 May 04
3
[LLVMdev] llvm-test make problems
Reid Spencer wrote:
> Have you modified the makefile in any way? Note that sse.expantfft.bc should be sse.expandfft.bc
no, did'nt change it.
the typo before seems to be an error while copying from the terminal.
i've cleaned everything and tried again. this is the messsage:
[brandner:/localtmp/brandner/dev/llvm-test:529] make -j1 TEST=nightly
2>&1 | tee report.nightly.raw.out
2006 Nov 17
2
[LLVMdev] 1.9 Prerelease Available for Testing (TAKE TWO)
Hi Tanya,
Here's my second attempt on Fedora Core 5. The changes this time are:
1. Using GCC 4.0.3 as the compiler
2. Building everything from source (no pre-built binaries used)
BUILD LLVM WITH GCC 4.0.3
* No issues, just the usual warnings.
BUILD LLVM-GCC WITH GCC 4.0.3
* No issues
RUN LLVM-TEST WITH GCC 4.0.3
* The following failures were encountered. Some of them are
2006 Nov 16
0
[LLVMdev] 1.9 Prerelease Available for Testing
Tanya,
Here's the results for GNU/Linux, 2.6.18-1.2200.fc5smp (Fedora Core 5)
HIGH LEVEL COMMENTS
* The llvm-1.9.tar.gz file unpacks to a dir named "llvm". Shouldn't
that be llvm-1.9?
* LLVM was built in Release mode in all cases
* I don't think this is ready for release. In particular the llvm-gcc4
binary
seg faults on FC 5 for most of llvm-test programs.
*
2007 Sep 18
0
[LLVMdev] 2.1 Pre-Release Available (testers needed)
On Saturday 15 September 2007, Tanya Lattner wrote:
> 2) Download llvm-2.1, llvm-test-2.1, and the llvm-gcc4.0 source.
> Compile everything. Run "make check" and the full llvm-test suite
> (make TEST=nightly report).
I tried to do this, but ran into trouble.
LLVM itself compiled fine.
GCC compilation is broken when Java support is enabled. I can file a detailed
bug report
2012 Dec 13
2
[LLVMdev] failures in test-suite for make TEST=simple
The first one failed on a diff:
******************** TEST (simple) 'sse.expandfft' FAILED!
********************
Execution Context Diff:
/home/rkotler/llvmpb3/build/projects/test-suite/tools/fpcmp: Compared:
1.139094e-07 and 1.159249e-07
abs. diff = 2.015500e-09 rel.diff = 1.738626e-02
Out of tolerance: rel/abs: 1.600000e-02/0.000000e+00
******************** TEST (simple)
2012 Dec 13
2
[LLVMdev] failures in test-suite for make TEST=simple
I'm getting three failures.
TEST-FAIL: exec
/home/rkotler/llvmpb3/build/projects/test-suite/SingleSource/UnitTests/Vector/SSE/sse.expandfft
TEST-RESULT-exec-time: user 0.3200
TEST-RESULT-exec-real-time: real 0.3172
TEST-FAIL: exec
/home/rkotler/llvmpb3/build/projects/test-suite/SingleSource/UnitTests/Vector/SSE/sse.stepfft
TEST-RESULT-exec-time: user 0.4000