diff options
author | David Robillard <d@drobilla.net> | 2013-02-23 19:44:17 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-02-23 19:44:17 +0000 |
commit | d93b8cf9aaf8972f407c7cb6b8ef2de63be25112 (patch) | |
tree | 9475b84087d0915492dc7007a4c56a82bd4f48eb | |
parent | 643353e7d3351a14669083478f984c1d91f43d36 (diff) | |
download | raul-d93b8cf9aaf8972f407c7cb6b8ef2de63be25112.tar.gz raul-d93b8cf9aaf8972f407c7cb6b8ef2de63be25112.tar.bz2 raul-d93b8cf9aaf8972f407c7cb6b8ef2de63be25112.zip |
Add missing test file.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5075 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | test/double_buffer_test.cpp | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/test/double_buffer_test.cpp b/test/double_buffer_test.cpp new file mode 100644 index 0000000..abcd317 --- /dev/null +++ b/test/double_buffer_test.cpp @@ -0,0 +1,49 @@ +/* + This file is part of Raul. + Copyright 2012 David Robillard <http://drobilla.net> + + Raul is free software: you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation, either version 3 of the License, or any later version. + + Raul is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Raul. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include "raul/DoubleBuffer.hpp" + +using namespace std; +using namespace Raul; + +int +main(int argc, char** argv) +{ + DoubleBuffer<int> db(0); + + if (db.get() != 0) { + return 1; + } + + db.set(42); + if (db.get() != 42) { + return 1; + } + + DoubleBuffer<int> db2(db); + if (db2.get() != 42) { + return 1; + } + + db.set(43); + if (db.get() != 43) { + return 1; + } else if (db2.get() != 42) { + return 1; + } + + return 0; +} |