summaryrefslogtreecommitdiffstats
path: root/test/atomic_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-07 21:27:39 +0000
committerDavid Robillard <d@drobilla.net>2010-01-07 21:27:39 +0000
commit0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95 (patch)
tree4d41dea009f1647519af8df10f114cd7a6165792 /test/atomic_test.cpp
parent61ac4a41f0aea63f45d7b27be3ef2e0554e93ece (diff)
downloadraul-0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95.tar.gz
raul-0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95.tar.bz2
raul-0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95.zip
Move unit testing and coverage framework into autowaf.
Make raul tests return 0 on success, 1 on failure. Test coverage for Raul. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2368 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'test/atomic_test.cpp')
-rw-r--r--test/atomic_test.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/atomic_test.cpp b/test/atomic_test.cpp
new file mode 100644
index 0000000..6611c91
--- /dev/null
+++ b/test/atomic_test.cpp
@@ -0,0 +1,14 @@
+#include <iostream>
+#include "raul/AtomicInt.hpp"
+#include "raul/AtomicPtr.hpp"
+
+using namespace std;
+using namespace Raul;
+
+int
+main()
+{
+ cout << "Well, at least I compiled; that's gotta count for something eh?" << endl;
+
+ return 0;
+}