search for: testsuitemakefileguid

Displaying 20 results from an estimated 21 matches for "testsuitemakefileguid".

Did you mean: testsuitemakefileguide
2012 Nov 14
0
[LLVMdev] Kill TestSuiteMakefileGuide.html?
Unfortunately, LNT still uses the Makefiles underneath, and the Makefiles support a few users who use the more advanced hackery they support. We should keep it for the time being. - Daniel On Nov 14, 2012, at 13:30, Sean Silva <silvas at purdue.edu> wrote: > The top of the file says that it is deprecated in favor of LNT. Is > this document still needed? It makes mention of
2012 Nov 14
4
[LLVMdev] Kill TestSuiteMakefileGuide.html?
Sorry for the bother Jim, but I'm calling on you again for guidance about llvm-gcc mentions. What should be done about the mention of llvm-gcc on <http://llvm.org/docs/TestSuiteMakefileGuide.html>? Can we just roughly s/llvm-gcc/clang/ ? Daniel, feel free to provide guidance as well. -- Sean Silva On Wed, Nov 14, 2012 at 4:36 PM, Daniel Dunbar <daniel.dunbar at gmail.com> wrote: > Unfortunately, LNT still uses the Makefiles underneath, and the > Makefiles support a fe...
2012 Nov 14
2
[LLVMdev] Kill TestSuiteMakefileGuide.html?
The top of the file says that it is deprecated in favor of LNT. Is this document still needed? It makes mention of llvm-gcc as well... -- Sean Silva
2012 Nov 14
0
[LLVMdev] Kill TestSuiteMakefileGuide.html?
...provide specifics here. -Jim On Nov 14, 2012, at 2:53 PM, Sean Silva <silvas at purdue.edu> wrote: > Sorry for the bother Jim, but I'm calling on you again for guidance > about llvm-gcc mentions. What should be done about the mention of > llvm-gcc on <http://llvm.org/docs/TestSuiteMakefileGuide.html>? Can we > just roughly s/llvm-gcc/clang/ ? Daniel, feel free to provide guidance > as well. > > -- Sean Silva > > On Wed, Nov 14, 2012 at 4:36 PM, Daniel Dunbar <daniel.dunbar at gmail.com> wrote: >> Unfortunately, LNT still uses the Makefiles underneath, a...
2012 Nov 15
0
[LLVMdev] Kill TestSuiteMakefileGuide.html?
Hi Sean, On 14/11/12 23:53, Sean Silva wrote: > Sorry for the bother Jim, but I'm calling on you again for guidance > about llvm-gcc mentions. What should be done about the mention of > llvm-gcc on <http://llvm.org/docs/TestSuiteMakefileGuide.html>? Can we > just roughly s/llvm-gcc/clang/ ? Daniel, feel free to provide guidance > as well. to some extent llvm-gcc lives on in dragonegg, for example to build the testsuite using dragonegg you need to use the --with-llvmgccdir flag and do some tricks. While I've got nothing a...
2019 Aug 29
3
404s within LLVM documentation
...thought it might be wise to set up a more automated approach in the future. Does anyone have any tips on how I'd go about doing this/if this should be set up at all? I ran a web crawler to find each of the dead links (this may not be exhaustive), and they are as follows: https://llvm.org/docs/TestSuiteMakefileGuide https://llvm.org/docs/doxygen/structLICM.html https://llvm.org/docs/tutorial/LangImpl5.html#for-loop-expression https://llvm.org/docs/tutorial/LangImpl7.html#user-defined-local-variables http://llvm.org/docs/lnt/modindex.html https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/LangImpl6.html#us...
2019 Aug 29
2
404s within LLVM documentation
...; to set up a more automated approach in the future. Does anyone have any > tips on how I'd go about doing this/if this should be set up at all? > > I ran a web crawler to find each of the dead links (this may not be > exhaustive), and they are as follows: > https://llvm.org/docs/TestSuiteMakefileGuide > https://llvm.org/docs/doxygen/structLICM.html > https://llvm.org/docs/tutorial/LangImpl5.html#for-loop-expression > https://llvm.org/docs/tutorial/LangImpl7.html#user-defined-local-variables > http://llvm.org/docs/lnt/modindex.html > > https://llvm.org/docs/tutorial/MyFirstLang...
2018 Feb 26
2
Compiling a benchmark to IR (either from test-suite, or other benchmarks)
Hello all. I'm in need of a benchmark that can be compiled to IR or bytecode. I found the test-suite project (https://llvm.org/docs/TestSuiteMakefileGuide.html) and thought a benchmark in that project might work. However, I'm having trouble figuring out how to actually compile any of the benchmarks to IR or bytecode. Using cmake and make I can compile them to binaries, but at no point do I see any bytecode being produced. The Makefiles in this...
2018 Feb 26
0
Compiling a benchmark to IR (either from test-suite, or other benchmarks)
...e file next to each .o file. - Matthias > On Feb 26, 2018, at 9:42 AM, Gus Smith via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hello all. > > I'm in need of a benchmark that can be compiled to IR or bytecode. I found the test-suite project (https://llvm.org/docs/TestSuiteMakefileGuide.html <https://llvm.org/docs/TestSuiteMakefileGuide.html>) and thought a benchmark in that project might work. However, I'm having trouble figuring out how to actually compile any of the benchmarks to IR or bytecode. Using cmake and make I can compile them to binaries, but at no point do...
2016 Nov 24
2
Running "different tests" on cmake based test-suite build
Hello Friends, With configure based build deprecated on llvm, how can I run different tests/pass on the suite (http://llvm.org/docs/TestSuiteMakefileGuide.html#running-different-tests)? Right now I am having a hacky solution, which includes running the "still present" configure file of test-suite to generate the MAKE.<MYPASS>.Makefile; > cd external-testsuite-build-loc > > <llvmsrc>/project/test-suite/configure --e...
2018 Jan 02
0
Testing End-To-End Functionality of Specific Optimization
...ce file, add an expected file and add the source file to the CMakeLists.txt (along with any additional CFLAGS/CXXFLAGS/LDFLAGS)... Of course, if you need anything custom, there are likely examples in the test suite that you can use for guidance. Also, this may be of some help: https://llvm.org/docs/TestSuiteMakefileGuide.html On Tue, Jan 2, 2018 at 9:14 PM, Eli Davis <eli at aarno-labs.com> wrote: > Ah, thank you, that makes sense. > > Is there any chance you can point me toward some documentation for how to > add tests to the test-suite? I've found a fair bit on how to run the tests, >...
2018 May 06
3
[clang] Running a single testcase
...-git. What am I missing? What do I need to run a single clang testcase? Thanks in advance. Regards, - Sedat - [1] https://github.com/llvm-mirror/clang/raw/master/test/Sema/asm.c [2] https://llvm.org/docs/CommandGuide/lit.html [3] https://llvm.org/docs/TestingGuide.html [4] https://llvm.org/docs/TestSuiteMakefileGuide.html [5] http://clang.llvm.org/hacking.html [6] http://clang.llvm.org/hacking.html#testingCommands -------------- next part -------------- A non-text attachment was scrubbed... Name: TestingConfig.py Type: text/x-python Size: 6537 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/...
2016 Nov 24
2
Running "different tests" on cmake based test-suite build
...; *To:* llvm-dev at lists.llvm.org > *Subject:* [llvm-dev] Running "different tests" on cmake based > test-suite build > > Hello Friends, > > With configure based build deprecated on llvm, how can I run different > tests/pass on the suite > (http://llvm.org/docs/TestSuiteMakefileGuide.html#running-different-tests)? > > > Right now I am having a hacky solution, which includes running the > "still present" configure file of test-suite to generate the > MAKE.<MYPASS>.Makefile; > > cd external-testsuite-build-loc > > <llvmsrc...
2018 Jan 02
2
Testing End-To-End Functionality of Specific Optimization
Ah, thank you, that makes sense. Is there any chance you can point me toward some documentation for how to add tests to the test-suite? I've found a fair bit on how to run the tests, but nothing on how to add new ones. Is it just as simple as adding testcase.c and testscase.reference_output in the appropriate directory? Thanks! On 01/02/2018 02:50 PM, Nemanja Ivanovic wrote: >
2018 Jul 09
4
Separate test harness for LLVM test-suite
Dear community, LLVM test-suite includes both default applications (benchmarks, tests) and test harness (CMake modules, lit-support, some scripts, etc.). Test suite provides extension interface to add "external" tests suite and folders. This worked well, we enhanced basic harness and integrated large set of internal benchmarks and applications. However, we have users interested in LLVM
2014 Jun 26
2
[LLVMdev] To test an LLVM pass
Hi, I wrote a pass in LLVM and would like to test it on the programs in LLVM test-suite. To be specific, I would like to get the stats upon running my pass on these programs. What are the commands to run my pass on the test suite? -- Rekha -------------- next part -------------- An HTML attachment was scrubbed... URL:
2018 May 07
0
[clang] Running a single testcase
...a single clang testcase? > > Thanks in advance. > > Regards, > - Sedat - > > [1] https://github.com/llvm-mirror/clang/raw/master/test/Sema/asm.c > [2] https://llvm.org/docs/CommandGuide/lit.html > [3] https://llvm.org/docs/TestingGuide.html > [4] https://llvm.org/docs/TestSuiteMakefileGuide.html > [5] http://clang.llvm.org/hacking.html > [6] http://clang.llvm.org/hacking.html#testingCommands > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >...
2018 Jan 02
0
Testing End-To-End Functionality of Specific Optimization
Typically the "end-to-end" test cases reside in `projects/test-suite`. All the test cases there build executable binaries from source, run those and compare the output (as well as the return code) to what's expected. You should probably put your test cases in there. Please note also that there are subcategories there - there are single source file and multiple source file programs.
2017 Feb 27
8
Noisy benchmark results?
Hi, I'm trying to run the benchmark suite: http://llvm.org/docs/TestingGuide.html#test-suite-quickstart I'm doing it the lnt way, as described at: http://llvm.org/docs/lnt/quickstart.html I don't know what to expect but the results seems to be quite noisy and unstable. E.g I've done two runs on two different commits that only differ by a space in CODE_OWNERS.txt on my 12
2017 Jun 29
2
The undef story
Sean, Many thanks for taking the time to respond. I didn’t make myself clear, I will try to be brief... > On Jun 28, 2017, at 7:48 PM, Sean Silva <chisophugis at gmail.com> wrote: > > > > On Wed, Jun 28, 2017 at 3:33 PM, Peter Lawrence via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > Chandler, >