#include <cstdlib>
#include <fstream>
+#include "phony.h"
+
int main()
{
}
--- /dev/null
+//----------------------------------------------------------------------
+// $Id: reference.cc 13395 2006-07-19 12:45:54Z kanschat $
+// Version: $Name$
+//
+// Copyright (C) 2006 by the deal.II authors
+//
+// This file is subject to QPL and may not be distributed
+// without copyright and license information. Please refer
+// to the file deal.II/doc/license.html for the text and
+// further information on this license.
+//
+//----------------------------------------------------------------------
+
+// A test program runs, but won't produce results
+
+
+#include <cstdlib>
+#include <fstream>
+
+int main()
+{
+}
--- /dev/null
+//----------------------------------------------------------------------
+// $Id: reference.cc 13395 2006-07-19 12:45:54Z kanschat $
+// Version: $Name$
+//
+// Copyright (C) 2006 by the deal.II authors
+//
+// This file is subject to QPL and may not be distributed
+// without copyright and license information. Please refer
+// to the file deal.II/doc/license.html for the text and
+// further information on this license.
+//
+//----------------------------------------------------------------------
+
+// A test program that produces wrong results
+
+
+#include <cstdlib>
+#include <fstream>
+
+#include "phony.h"
+
+int main()
+{
+ std::ofstream out("no_diff_04/output");
+ out << "My output" << std::endl;
+}
--- /dev/null
+//----------------------------------------------------------------------
+// $Id: reference.cc 13395 2006-07-19 12:45:54Z kanschat $
+// Version: $Name$
+//
+// Copyright (C) 2006 by the deal.II authors
+//
+// This file is subject to QPL and may not be distributed
+// without copyright and license information. Please refer
+// to the file deal.II/doc/license.html for the text and
+// further information on this license.
+//
+//----------------------------------------------------------------------
+
+// A test program that produces correct results
+
+
+#include <cstdlib>
+#include <fstream>
+
+#include "phony.h"
+
+int main()
+{
+ std::ofstream out("ok_02/output");
+ out << "My output" << std::endl;
+}