[cfe-commits] r88856 - /cfe/trunk/test/CodeGenCXX/rtti.cpp

Daniel Dunbar daniel at zuster.org
Mon Nov 16 10:14:46 PST 2009


Hi Mike,

On Sun, Nov 15, 2009 at 10:57 AM, Mike Stump <mrs at apple.com> wrote:
> Author: mrs
> Date: Sun Nov 15 11:57:00 2009
> New Revision: 88856
>
> URL: http://llvm.org/viewvc/llvm-project?rev=88856&view=rev
> Log:
> Fix linux buildbots.

> +// FIXME: The above doesn't work in some environments.  What's the best way to fix this?
> +// XFAIL: *

Note that this doesn't make sense, "XFAIL: *" means that this test
will be expected to fail everwhere. Given that the buildbots aren't
complaining, it means this test *is* failing everywhere.

If you wanted to spell "xfail on linux", it would look something like this:
  XFAIL: linux
The XFAIL arguments are comma separated, and each is checked to see if
it is present in the target triple -- if so it is a match and the test
is regarded as XFAIL.

 - Daniel

>  class test1_B1 {
>   virtual void foo() { }
>
>
> _______________________________________________
> cfe-commits mailing list
> cfe-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
>




More information about the cfe-commits mailing list