--- /dev/null
+CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
+INCLUDE(${DEAL_II_SOURCE_DIR}/cmake/setup_testsuite.cmake)
+PROJECT(testsuite CXX)
+INCLUDE(${DEAL_II_TARGET_CONFIG})
+DEAL_II_PICKUP_TESTS()
// ---------------------------------------------------------------------
-// $Id$
+// $Id: fail.cc 30508 2013-08-27 17:01:42Z turcksin $
//
// Copyright (C) 2010 - 2013 by the deal.II authors
//
-// test the testsuite framework. this test is supposed to compile and link
-// successfully but not run
+// test the testsuite framework. this test is supposed to miscompile
#include "../tests.h"
#include <deal.II/base/logstream.h>
// ---------------------------------------------------------------------
-// $Id$
+// $Id: compile.cc 30508 2013-08-27 17:01:42Z turcksin $
//
// Copyright (C) 2010 - 2013 by the deal.II authors
//
// ---------------------------------------------------------------------
-// $Id$
+// $Id: miscompare.cc 30508 2013-08-27 17:01:42Z turcksin $
//
// Copyright (C) 2010 - 2013 by the deal.II authors
//
-// test the testsuite framework. this test is supposed to compile successfully
-// but not run
+// test the testsuite framework. this test is supposed to run succesfully
+// but to miscompare
#include "../tests.h"
#include <deal.II/base/logstream.h>
// ---------------------------------------------------------------------
-// $Id$
+// $Id: run.cc 30508 2013-08-27 17:01:42Z turcksin $
//
// Copyright (C) 2010 - 2013 by the deal.II authors
//
-// test the testsuite framework. this test is supposed to compile and link
-// successfully but not run
+// test the testsuite framework. this test is supposed to run successfully
#include "../tests.h"
#include <deal.II/base/logstream.h>
#include <fstream>
-#include <cstdlib>
int main ()
deallog.attach(logfile);
deallog.depth_console(0);
- std::abort ();
-
deallog << "OK" << std::endl;
}
-// test the testsuite framework. this test is supposed to run successfully
+// test the testsuite framework. this test is supposed to compile and link
+// successfully but not run
#include "../tests.h"
#include <deal.II/base/logstream.h>
#include <fstream>
+#include <cstdlib>
int main ()
deallog.attach(logfile);
deallog.depth_console(0);
+ std::abort ();
+
deallog << "OK" << std::endl;
}