[llvm] r243960 - Update test suite to make "ninja check" succeed without native backend builtin

Robinson, Paul via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 21 16:53:06 PDT 2015


Send to correct list...

> -----Original Message-----
> From: Robinson, Paul
> Sent: Friday, August 21, 2015 4:47 PM
> To: 'Mehdi Amini'; llvm-commits at cs.uiuc.edu
> Subject: RE: [llvm] r243960 - Update test suite to make "ninja check"
> succeed without native backend builtin
> 
> > -----Original Message-----
> > From: llvm-commits-bounces at cs.uiuc.edu [mailto:llvm-commits-
> > bounces at cs.uiuc.edu] On Behalf Of Mehdi Amini
> > Sent: Monday, August 03, 2015 11:33 PM
> > To: llvm-commits at cs.uiuc.edu
> > Subject: [llvm] r243960 - Update test suite to make "ninja check"
> succeed
> > without native backend builtin
> >
> > Author: mehdi_amini
> > Date: Tue Aug  4 01:32:54 2015
> > New Revision: 243960
> >
> > URL: http://llvm.org/viewvc/llvm-project?rev=243960&view=rev
> > Log:
> > Update test suite to make "ninja check" succeed without native backend
> > builtin
> >
> > Requires "native" feature in most places that were failing.
> >
> > From: Mehdi Amini <mehdi.amini at apple.com>
> >
> > Added:
> >     llvm/trunk/test/CodeGen/Generic/lit.local.cfg
> >     llvm/trunk/test/DebugInfo/lit.local.cfg
> 
> Sorry, why did you need to disable all DebugInfo tests here?
> We run with different host and target triples, and these tests
> run fine for us.  (Host and target arch are the same, if that
> matters.)
> 
> It took a little while to notice this because the tests went from
> PASS to UNSUPPORTED and we weren't looking for that.
> 
> Thanks,
> --paulr
> 
> > Modified:
> >     llvm/trunk/test/Feature/optnone-llc.ll
> >     llvm/trunk/test/Feature/optnone.ll
> >     llvm/trunk/test/Linker/subprogram-linkonce-weak-odr.ll
> >     llvm/trunk/test/Linker/subprogram-linkonce-weak.ll
> >     llvm/trunk/test/Linker/type-unique-odr-a.ll
> >     llvm/trunk/test/Linker/type-unique-simple-a.ll
> >     llvm/trunk/test/Linker/type-unique-simple2-a.ll
> >     llvm/trunk/test/Linker/type-unique-simple2.ll
> >     llvm/trunk/test/Linker/type-unique-type-array-a.ll
> >     llvm/trunk/test/Other/2010-05-06-Printer.ll
> >     llvm/trunk/test/Transforms/BranchFolding/2007-10-19-
> > InlineAsmDirectives.ll
> >     llvm/trunk/test/tools/llvm-mc/fatal_warnings.test
> >     llvm/trunk/test/tools/llvm-mc/line_end_with_space.test
> >     llvm/trunk/test/tools/llvm-mc/no_warnings.test
> >     llvm/trunk/test/tools/lto/opt-level.ll
> >
> > Added: llvm/trunk/test/CodeGen/Generic/lit.local.cfg
> > URL: http://llvm.org/viewvc/llvm-
> >
> project/llvm/trunk/test/CodeGen/Generic/lit.local.cfg?rev=243960&view=auto
> >
> ==========================================================================
> > ====
> > --- llvm/trunk/test/CodeGen/Generic/lit.local.cfg (added)
> > +++ llvm/trunk/test/CodeGen/Generic/lit.local.cfg Tue Aug  4 01:32:54
> 2015
> > @@ -0,0 +1,3 @@
> > +if 'native' not in config.available_features:
> > +    config.unsupported = True
> > +
> >
> > Added: llvm/trunk/test/DebugInfo/lit.local.cfg
> > URL: http://llvm.org/viewvc/llvm-
> > project/llvm/trunk/test/DebugInfo/lit.local.cfg?rev=243960&view=auto
> >
> ==========================================================================
> > ====
> > --- llvm/trunk/test/DebugInfo/lit.local.cfg (added)
> > +++ llvm/trunk/test/DebugInfo/lit.local.cfg Tue Aug  4 01:32:54 2015
> > @@ -0,0 +1,3 @@
> > +if 'native' not in config.available_features:
> > +    config.unsupported = True
> > +
> >



More information about the llvm-commits mailing list