summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-11-24 17:47:22 -0500
committerDavid Robillard <d@drobilla.net>2024-11-24 18:24:26 -0500
commitc8ce62a6a883f8f8d512d4dab71e2de3c67bdbb3 (patch)
treed0a21e894f6f824dbd0a1d2971c4783fafcb06b7 /test
parentbf56db258fda9fb466fec47af9099c1aed127b3e (diff)
downloadraul-main.tar.gz
raul-main.tar.bz2
raul-main.zip
Use angle brackets for library includesmain
Diffstat (limited to 'test')
-rw-r--r--test/array_test.cpp2
-rw-r--r--test/build_test.cpp24
-rw-r--r--test/double_buffer_test.cpp2
-rw-r--r--test/headers/test_headers.cpp24
-rw-r--r--test/maid_test.cpp2
-rw-r--r--test/path_test.cpp4
-rw-r--r--test/ringbuffer_test.cpp2
-rw-r--r--test/sem_test.cpp2
-rw-r--r--test/socket_test.cpp2
-rw-r--r--test/symbol_test.cpp2
-rw-r--r--test/thread_test.cpp2
11 files changed, 34 insertions, 34 deletions
diff --git a/test/array_test.cpp b/test/array_test.cpp
index 5f10693..ce299da 100644
--- a/test/array_test.cpp
+++ b/test/array_test.cpp
@@ -3,7 +3,7 @@
#undef NDEBUG
-#include "raul/Array.hpp"
+#include <raul/Array.hpp>
#include <cassert>
#include <cstdio>
diff --git a/test/build_test.cpp b/test/build_test.cpp
index f8c3085..5084bd2 100644
--- a/test/build_test.cpp
+++ b/test/build_test.cpp
@@ -1,20 +1,20 @@
// Copyright 2007-2017 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: GPL-3.0-or-later
-#include "raul/Array.hpp"
-#include "raul/Deletable.hpp"
-#include "raul/DoubleBuffer.hpp"
-#include "raul/Exception.hpp"
-#include "raul/Maid.hpp"
-#include "raul/Noncopyable.hpp"
-#include "raul/Path.hpp"
-#include "raul/RingBuffer.hpp"
-#include "raul/Semaphore.hpp"
-#include "raul/Symbol.hpp"
+#include <raul/Array.hpp>
+#include <raul/Deletable.hpp>
+#include <raul/DoubleBuffer.hpp>
+#include <raul/Exception.hpp>
+#include <raul/Maid.hpp>
+#include <raul/Noncopyable.hpp>
+#include <raul/Path.hpp>
+#include <raul/RingBuffer.hpp>
+#include <raul/Semaphore.hpp>
+#include <raul/Symbol.hpp>
#ifndef _WIN32
-# include "raul/Process.hpp"
-# include "raul/Socket.hpp"
+# include <raul/Process.hpp>
+# include <raul/Socket.hpp>
#endif
class DeletableThing : public raul::Deletable
diff --git a/test/double_buffer_test.cpp b/test/double_buffer_test.cpp
index dbdaa4b..6c49524 100644
--- a/test/double_buffer_test.cpp
+++ b/test/double_buffer_test.cpp
@@ -3,7 +3,7 @@
#undef NDEBUG
-#include "raul/DoubleBuffer.hpp"
+#include <raul/DoubleBuffer.hpp>
#include <cassert>
diff --git a/test/headers/test_headers.cpp b/test/headers/test_headers.cpp
index 7e28da3..6a3cbfc 100644
--- a/test/headers/test_headers.cpp
+++ b/test/headers/test_headers.cpp
@@ -1,20 +1,20 @@
// Copyright 2022 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: GPL-3.0-or-later
-#include "raul/Array.hpp" // IWYU pragma: keep
-#include "raul/Deletable.hpp" // IWYU pragma: keep
-#include "raul/DoubleBuffer.hpp" // IWYU pragma: keep
-#include "raul/Exception.hpp" // IWYU pragma: keep
-#include "raul/Maid.hpp" // IWYU pragma: keep
-#include "raul/Noncopyable.hpp" // IWYU pragma: keep
-#include "raul/Path.hpp" // IWYU pragma: keep
-#include "raul/RingBuffer.hpp" // IWYU pragma: keep
-#include "raul/Semaphore.hpp" // IWYU pragma: keep
-#include "raul/Symbol.hpp" // IWYU pragma: keep
+#include <raul/Array.hpp> // IWYU pragma: keep
+#include <raul/Deletable.hpp> // IWYU pragma: keep
+#include <raul/DoubleBuffer.hpp> // IWYU pragma: keep
+#include <raul/Exception.hpp> // IWYU pragma: keep
+#include <raul/Maid.hpp> // IWYU pragma: keep
+#include <raul/Noncopyable.hpp> // IWYU pragma: keep
+#include <raul/Path.hpp> // IWYU pragma: keep
+#include <raul/RingBuffer.hpp> // IWYU pragma: keep
+#include <raul/Semaphore.hpp> // IWYU pragma: keep
+#include <raul/Symbol.hpp> // IWYU pragma: keep
#ifndef _WIN32
-# include "raul/Process.hpp" // IWYU pragma: keep
-# include "raul/Socket.hpp" // IWYU pragma: keep
+# include <raul/Process.hpp> // IWYU pragma: keep
+# include <raul/Socket.hpp> // IWYU pragma: keep
#endif
#if defined(__GNUC__)
diff --git a/test/maid_test.cpp b/test/maid_test.cpp
index fbd278a..2088c83 100644
--- a/test/maid_test.cpp
+++ b/test/maid_test.cpp
@@ -3,7 +3,7 @@
#undef NDEBUG
-#include "raul/Maid.hpp"
+#include <raul/Maid.hpp>
#include <atomic>
#include <cassert>
diff --git a/test/path_test.cpp b/test/path_test.cpp
index 681cebe..107bf22 100644
--- a/test/path_test.cpp
+++ b/test/path_test.cpp
@@ -3,8 +3,8 @@
#undef NDEBUG
-#include "raul/Path.hpp"
-#include "raul/Symbol.hpp"
+#include <raul/Path.hpp>
+#include <raul/Symbol.hpp>
#include <cassert>
#include <cstring>
diff --git a/test/ringbuffer_test.cpp b/test/ringbuffer_test.cpp
index 59529e8..c623166 100644
--- a/test/ringbuffer_test.cpp
+++ b/test/ringbuffer_test.cpp
@@ -3,7 +3,7 @@
#undef NDEBUG
-#include "raul/RingBuffer.hpp"
+#include <raul/RingBuffer.hpp>
#include <cassert>
#include <climits>
diff --git a/test/sem_test.cpp b/test/sem_test.cpp
index 103e5e5..9fb17a6 100644
--- a/test/sem_test.cpp
+++ b/test/sem_test.cpp
@@ -3,7 +3,7 @@
#undef NDEBUG
-#include "raul/Semaphore.hpp"
+#include <raul/Semaphore.hpp>
#include <cassert>
#include <chrono>
diff --git a/test/socket_test.cpp b/test/socket_test.cpp
index 1f2d736..9fd7307 100644
--- a/test/socket_test.cpp
+++ b/test/socket_test.cpp
@@ -3,7 +3,7 @@
#undef NDEBUG
-#include "raul/Socket.hpp"
+#include <raul/Socket.hpp>
#include <poll.h>
#include <sys/types.h>
diff --git a/test/symbol_test.cpp b/test/symbol_test.cpp
index 2d656cb..9266398 100644
--- a/test/symbol_test.cpp
+++ b/test/symbol_test.cpp
@@ -3,7 +3,7 @@
#undef NDEBUG
-#include "raul/Symbol.hpp"
+#include <raul/Symbol.hpp>
#include <cassert>
#include <iostream>
diff --git a/test/thread_test.cpp b/test/thread_test.cpp
index 0eed30d..26f9ac9 100644
--- a/test/thread_test.cpp
+++ b/test/thread_test.cpp
@@ -3,7 +3,7 @@
#undef NDEBUG
-#include "raul/Semaphore.hpp"
+#include <raul/Semaphore.hpp>
#include <atomic>
#include <cassert>