Aaron Gray
2009-Jun-17 17:33 UTC
[LLVMdev] how do I run 'make check' on say just the 'test/CodeGen' directory ?
Does 'make check' allow just running on a particualar directory of tests ? Many thanks in advance, Aaron -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090617/e0dc48e4/attachment.html>
Tanya M. Lattner
2009-Jun-17 17:53 UTC
[LLVMdev] how do I run 'make check' on say just the 'test/CodeGen' directory ?
On Wed, 17 Jun 2009, Aaron Gray wrote:> Does 'make check' allow just running on a particualar directory of tests ?make check TESTSUITE=CodeGen You set TESTSUITE to any directory. -Tanya> > Many thanks in advance, > > Aaron > > >
Stefanus Du Toit
2009-Jun-17 17:55 UTC
[LLVMdev] how do I run 'make check' on say just the 'test/CodeGen' directory ?
From http://www.llvm.org/docs/TestingGuide.html#quickdejagnu : To run only a subdirectory of tests in llvm/test using DejaGNU (ie. Transforms), just set the TESTSUITE variable to the path of the subdirectory (relative to llvm/test): % gmake TESTSUITE=Transforms check On 17-Jun-09, at 1:33 PM, Aaron Gray wrote:> Does 'make check' allow just running on a particualar directory of > tests ? > > Many thanks in advance, > > Aaron > <ATT00001.txt>-- Stefanus Du Toit <stefanus.dutoit at rapidmind.com> RapidMind Inc. phone: +1 519 885 5455 x116 -- fax: +1 519 885 1463 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090617/1cd0d414/attachment.html>
Anton Korobeynikov
2009-Jun-17 18:06 UTC
[LLVMdev] how do I run 'make check' on say just the 'test/CodeGen' directory ?
> Does 'make check' allow just running on a particualar directory of tests ?Yes, e.g. make check TESTSUITE=CodeGen/X86 -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
Aaron Gray
2009-Jun-17 19:11 UTC
[LLVMdev] how do I run 'make check' on say just the'test/CodeGen' directory ?
Ah, if in doubt read the fine manual :) ----- Original Message ----- From: Stefanus Du Toit To: LLVM Developers Mailing List Sent: Wednesday, June 17, 2009 6:55 PM Subject: Re: [LLVMdev] how do I run 'make check' on say just the'test/CodeGen' directory ? From http://www.llvm.org/docs/TestingGuide.html#quickdejagnu : To run only a subdirectory of tests in llvm/test using DejaGNU (ie. Transforms), just set the TESTSUITE variable to the path of the subdirectory (relative to llvm/test): % gmake TESTSUITE=Transforms check On 17-Jun-09, at 1:33 PM, Aaron Gray wrote: Does 'make check' allow just running on a particualar directory of tests ? Many thanks in advance, Aaron <ATT00001.txt> -- Stefanus Du Toit <stefanus.dutoit at rapidmind.com> RapidMind Inc. phone: +1 519 885 5455 x116 -- fax: +1 519 885 1463 ------------------------------------------------------------------------------ _______________________________________________ LLVM Developers mailing list LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090617/d1c643fa/attachment.html>