summaryrefslogtreecommitdiffstats
path: root/ml/dlib/dlib/test/binary_search_tree_mm2.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:19:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:20:02 +0000
commit58daab21cd043e1dc37024a7f99b396788372918 (patch)
tree96771e43bb69f7c1c2b0b4f7374cb74d7866d0cb /ml/dlib/dlib/test/binary_search_tree_mm2.cpp
parentReleasing debian version 1.43.2-1. (diff)
downloadnetdata-58daab21cd043e1dc37024a7f99b396788372918.tar.xz
netdata-58daab21cd043e1dc37024a7f99b396788372918.zip
Merging upstream version 1.44.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ml/dlib/dlib/test/binary_search_tree_mm2.cpp')
-rw-r--r--ml/dlib/dlib/test/binary_search_tree_mm2.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/ml/dlib/dlib/test/binary_search_tree_mm2.cpp b/ml/dlib/dlib/test/binary_search_tree_mm2.cpp
new file mode 100644
index 000000000..354b1f91c
--- /dev/null
+++ b/ml/dlib/dlib/test/binary_search_tree_mm2.cpp
@@ -0,0 +1,48 @@
+// Copyright (C) 2003 Davis E. King (davis@dlib.net)
+// License: Boost Software License See LICENSE.txt for the full license.
+#ifndef DLIB_BINARY_SEARCH_TREE_KERNEl_TEST_
+#define DLIB_BINARY_SEARCH_TREE_KERNEl_TEST_
+
+
+#include <sstream>
+#include <string>
+#include <cstdlib>
+#include <ctime>
+
+#include <dlib/memory_manager_global.h>
+#include <dlib/memory_manager_stateless.h>
+#include <dlib/binary_search_tree.h>
+#include "tester.h"
+#include "binary_search_tree.h"
+
+namespace
+{
+
+ class binary_search_tree_tester : public tester
+ {
+
+ public:
+ binary_search_tree_tester (
+ ) :
+ tester ("test_binary_search_tree_mm2",
+ "Runs tests on the binary_search_tree component with memory managers.")
+ {}
+
+ void perform_test (
+ )
+ {
+ dlog << LINFO << "testing kernel_1a /w memory_manager_stateless_2";
+ binary_search_tree_kernel_test<binary_search_tree<int,int,
+ memory_manager_stateless<char>::kernel_2_2c>::kernel_1a>();
+ print_spinner();
+
+ dlog << LINFO << "testing kernel_1a /w memory_manager_3";
+ binary_search_tree_kernel_test<binary_search_tree<int,int,
+ memory_manager<char>::kernel_3b>::kernel_1a>();
+ print_spinner();
+ }
+ } a;
+
+}
+
+#endif