From c04b50600e30b5dfcabb6413d009e45171493342 Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Wed, 25 Feb 2026 21:05:38 -0500 Subject: [PATCH] reduced number of nodes in sym tree test was taking 30 seconds before with 40000 nodes, so dropped to ~4000 nodes and now run time is under 4 seconds. --- nucleus/library/tests_nodes/test_symbol_tree.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nucleus/library/tests_nodes/test_symbol_tree.cpp b/nucleus/library/tests_nodes/test_symbol_tree.cpp index 64e917e0..a3e7aeef 100644 --- a/nucleus/library/tests_nodes/test_symbol_tree.cpp +++ b/nucleus/library/tests_nodes/test_symbol_tree.cpp @@ -44,7 +44,8 @@ using namespace unit_test; //#define DEBUG_TEST_SYMBOL_TREE // how many nodes we add to the tree. -const int MAX_NODES_TESTED = 40000; +//const int MAX_NODES_TESTED = 40000; +const int MAX_NODES_TESTED = 4200; class test_symbol_tree : public unit_base, public application_shell { -- 2.43.0