]> https://gitweb.dealii.org/ - dealii.git/commitdiff
New test. 2344/head
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Sat, 12 Mar 2016 00:07:57 +0000 (18:07 -0600)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Sat, 12 Mar 2016 00:07:57 +0000 (18:07 -0600)
tests/base/thread_12.cc [new file with mode: 0644]
tests/base/thread_12.with_cxx11=true.output [new file with mode: 0644]

diff --git a/tests/base/thread_12.cc b/tests/base/thread_12.cc
new file mode 100644 (file)
index 0000000..3d2179e
--- /dev/null
@@ -0,0 +1,62 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+// verify that we can create threads both via lambdas and via std::bind
+// expressions. this obviously requires C++11
+
+#include "../tests.h"
+#include <iomanip>
+#include <fstream>
+#include <unistd.h>
+
+#include <deal.II/base/thread_management.h>
+
+
+// return a double, to make sure we correctly identify the return type
+// of the expressions used in new_task(...)
+double test (int i)
+{
+  deallog << "Task " << i << " starting..." << std::endl;
+  sleep (1);
+  deallog << "Task " << i << " finished!" << std::endl;
+
+  return 3.141;
+}
+
+
+
+
+int main()
+{
+  std::ofstream logfile("output");
+  deallog.attach(logfile);
+  deallog.threshold_double(1.e-10);
+
+  Threads::ThreadGroup<double> tg;
+  tg += Threads::new_thread (std::bind (test, 1));
+  tg += Threads::new_thread ([]()
+  {
+    return test(2);
+  });
+
+  tg.join_all ();
+
+  deallog << "OK" << std::endl;
+
+  deallog.detach ();
+  logfile.close ();
+  sort_file_contents ("output");
+}
diff --git a/tests/base/thread_12.with_cxx11=true.output b/tests/base/thread_12.with_cxx11=true.output
new file mode 100644 (file)
index 0000000..d239d4d
--- /dev/null
@@ -0,0 +1,6 @@
+DEAL::OK
+DEAL::Task 1 finished!
+DEAL::Task 1 starting...
+DEAL::Task 2 finished!
+DEAL::Task 2 starting...
+

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.