search for: testsuiterun

Displaying 8 results from an estimated 8 matches for "testsuiterun".

2010 Jul 05
0
[LLVMdev] How to test my pass
Chayan Sarkar wrote: > Hi there, > > I have written a PRE pass using LLVM. How can I test my pass? Is > there any standard test-cases or bench-marks to test a pass. Please > suggest accordingly. Use the LLVM nightly test suite: http://llvm.org/docs/TestingGuide.html#testsuiterun Make a copy of an existing test like TEST.example.Makefile and modify it to run 'opt -yourpass -time-passes -stats', then 'make TEST=yourexample report' and read the report.raw.out it produces. Look for crashes first and foremost, then look at how many times it actually modified...
2010 Jul 05
3
[LLVMdev] How to test my pass
Hi there, I have written a PRE pass using LLVM. How can I test my pass? Is there any standard test-cases or bench-marks to test a pass. Please suggest accordingly. Regards, Chayan
2011 Jan 18
3
[LLVMdev] About test suits Cont1
...--disable-optimized --enable-debug-symbols --enable-assertions * --with-llvmgccdir=LLVMGCC_DIR (7) search LLVMCC_EMITIR_FLAG or "cd projects/test-suite" (both failed) *2. Another question* *In the steps above, I omitted the re-configure process in http://llvm.org/docs/TestingGuide.html#testsuiterun **, since I thought I have configured the $LLVM_GCC_DIR before building llvm.* *As it failed, I did the following to reconfigure, but it failed again:* (8) cd OBJ_DIR/llvm/ (9) *SRC_DIR/configure --prefix=INS_DIR --enable-debug-runtime --disable-optimized --enable-debug-symbols --enable-assertion...
2010 Jun 03
1
[LLVMdev] Using benchmarks from SPEC (gcc, bzip2...)
I'm planning on implementing a register allocator on LLVM and I've noticed that the LLVM test suite supports SPEC's CINT2006 benchmarks with some makefiles. Since SPEC seems to be way too expensive, but some (all?) of its programs are available for free, I was thinking of making my own SPEC-based test suite. How hard would it be for me to integrate whole-program benchmarks in LLVM?
2011 Jan 17
0
[LLVMdev] About test suits Cont1
On Jan 15, 2011, at 8:06 PM, Qingan Li wrote: > [qali at qali llvm-2.8-rev]$ find . -exec grep -n "LLVMCC_EMITIR_FLAG" ./ {} \; > ./projects/test-suite/Makefile.tests:47: -$(LCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG) > ./projects/test-suite/Makefile.tests:51: -$(LCXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S
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 Jan 16
2
[LLVMdev] About test suits Cont1
*[qali at qali llvm-2.8-rev]$ find . -exec grep -n "LLVMCC_EMITIR_FLAG" ./ {} \;* ./projects/test-suite/Makefile.tests:47: -$(LCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG) ./projects/test-suite/Makefile.tests:51: -$(LCXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG)
2011 Jan 19
0
[LLVMdev] Fwd: About test suits Cont1
...able-debug-symbols > --enable-assertions --with-llvmgccdir=LLVMGCC_DIR > (7) search LLVMCC_EMITIR_FLAG or "cd projects/test-suite" (both failed) > > 2. Another question > In the steps above, I omitted the re-configure process in > http://llvm.org/docs/TestingGuide.html#testsuiterun , since I thought I > have configured the $LLVM_GCC_DIR before building llvm. > > As it failed, I did the following to reconfigure, but it failed again: > (8) cd OBJ_DIR/llvm/ > (9) SRC_DIR/configure --prefix=INS_DIR --enable-debug-runtime > --disable-optimized --enable-debug-sym...