summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/atom_test.cpp16
-rw-r--r--test/atomic_test.cpp16
-rw-r--r--test/list_test.cpp16
-rw-r--r--test/path_test.cpp16
-rw-r--r--test/ptr_test.cpp16
-rw-r--r--test/quantize_test.cpp16
-rw-r--r--test/queue_test.cpp16
-rw-r--r--test/ringbuffer_test.cpp16
-rw-r--r--test/sem_test.cpp16
-rw-r--r--test/smf_test.cpp16
-rw-r--r--test/table_test.cpp16
-rw-r--r--test/thread_test.cpp16
-rw-r--r--test/time_test.cpp16
13 files changed, 208 insertions, 0 deletions
diff --git a/test/atom_test.cpp b/test/atom_test.cpp
index c36f726..381ebbe 100644
--- a/test/atom_test.cpp
+++ b/test/atom_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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/Atom.hpp"
using namespace std;
diff --git a/test/atomic_test.cpp b/test/atomic_test.cpp
index 7aadae9..51d710d 100644
--- a/test/atomic_test.cpp
+++ b/test/atomic_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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/AtomicInt.hpp"
#include "raul/AtomicPtr.hpp"
diff --git a/test/list_test.cpp b/test/list_test.cpp
index 4e0f45f..d538625 100644
--- a/test/list_test.cpp
+++ b/test/list_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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 <iostream>
#include <cstddef>
#include "raul/log.hpp"
diff --git a/test/path_test.cpp b/test/path_test.cpp
index 7df1acf..57230cc 100644
--- a/test/path_test.cpp
+++ b/test/path_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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 <iostream>
#include <list>
#include "raul/log.hpp"
diff --git a/test/ptr_test.cpp b/test/ptr_test.cpp
index 95b702b..22a1c2b 100644
--- a/test/ptr_test.cpp
+++ b/test/ptr_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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/SharedPtr.hpp"
#include "raul/WeakPtr.hpp"
diff --git a/test/quantize_test.cpp b/test/quantize_test.cpp
index 9d7e539..9cc165d 100644
--- a/test/quantize_test.cpp
+++ b/test/quantize_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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/Quantizer.hpp"
#include <iostream>
diff --git a/test/queue_test.cpp b/test/queue_test.cpp
index 42e314e..8685f15 100644
--- a/test/queue_test.cpp
+++ b/test/queue_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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 <iostream>
#include <string>
#include <vector>
diff --git a/test/ringbuffer_test.cpp b/test/ringbuffer_test.cpp
index c843ed2..38e09e9 100644
--- a/test/ringbuffer_test.cpp
+++ b/test/ringbuffer_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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 <cstdio>
#include <cstdlib>
#include <cstring>
diff --git a/test/sem_test.cpp b/test/sem_test.cpp
index dda6ca2..f3ed065 100644
--- a/test/sem_test.cpp
+++ b/test/sem_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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 <iostream>
#include <unistd.h>
#include "raul/Thread.hpp"
diff --git a/test/smf_test.cpp b/test/smf_test.cpp
index bc9b756..680f66b 100644
--- a/test/smf_test.cpp
+++ b/test/smf_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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 <iostream>
#include <string>
#include "raul/log.hpp"
diff --git a/test/table_test.cpp b/test/table_test.cpp
index 1bb33d0..80b12b2 100644
--- a/test/table_test.cpp
+++ b/test/table_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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 <string>
#include <iostream>
#include <utility>
diff --git a/test/thread_test.cpp b/test/thread_test.cpp
index 84840de..738b30c 100644
--- a/test/thread_test.cpp
+++ b/test/thread_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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 <iostream>
#include "raul/Thread.hpp"
#include "raul/Semaphore.hpp"
diff --git a/test/time_test.cpp b/test/time_test.cpp
index d7b6d81..dec86bf 100644
--- a/test/time_test.cpp
+++ b/test/time_test.cpp
@@ -1,3 +1,19 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-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/TimeStamp.hpp"
#include "raul/TimeSlice.hpp"
#include <iostream>