2009-09-28 19:37:35 +04:00
|
|
|
/*============================================================================
|
|
|
|
KWSys - Kitware System Library
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-09-16 16:20:48 +04:00
|
|
|
#include <stdio.h>
|
2005-10-21 17:49:04 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2005-09-16 16:20:48 +04:00
|
|
|
|
2007-03-03 18:47:06 +03:00
|
|
|
int testFail(int argc, char* argv[])
|
2005-09-16 16:20:48 +04:00
|
|
|
{
|
2005-10-21 17:49:04 +04:00
|
|
|
char* env = getenv("DASHBOARD_TEST_FROM_CTEST");
|
|
|
|
int oldCtest = 0;
|
|
|
|
if(env)
|
|
|
|
{
|
|
|
|
if(strcmp(env, "1") == 0)
|
|
|
|
{
|
|
|
|
oldCtest = 1;
|
|
|
|
}
|
|
|
|
printf("DASHBOARD_TEST_FROM_CTEST = %s\n", env);
|
|
|
|
}
|
2005-09-16 16:20:48 +04:00
|
|
|
printf("%s: This test intentionally fails\n", argv[0]);
|
2005-10-21 17:49:04 +04:00
|
|
|
if(oldCtest)
|
|
|
|
{
|
|
|
|
printf("The version of ctest is not able to handle intentionally failing tests, so pass.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2005-09-16 16:20:48 +04:00
|
|
|
return argc;
|
|
|
|
}
|