add and Update mutex test that is no longer necessary now that glib has been fixed
[ardour.git] / libs / pbd / test / mutex_test.h
diff --git a/libs/pbd/test/mutex_test.h b/libs/pbd/test/mutex_test.h
new file mode 100644 (file)
index 0000000..95b6ea3
--- /dev/null
@@ -0,0 +1,17 @@
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+#include "glibmm/threads.h"
+
+class MutexTest : public CppUnit::TestFixture
+{
+       CPPUNIT_TEST_SUITE (MutexTest);
+       CPPUNIT_TEST (testBasic);
+       CPPUNIT_TEST_SUITE_END ();
+
+public:
+       MutexTest ();
+       void testBasic ();
+
+private:
+       Glib::Threads::Mutex m_mutex;
+};