From: Fred T. Hamster Date: Wed, 11 Feb 2026 03:01:52 +0000 (-0500) Subject: less aggressive factorial test with 12 X-Git-Tag: 2.140.191^2~17 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=f6644671cf76dbe89afa4c7cb1757275cdcb7a68;p=feisty_meow.git less aggressive factorial test with 12 37 was too big a factorial, just because i was using ints and they can't represent the number for 37!. so, 12 is much nicer. --- diff --git a/nucleus/library/tests_application/test_callstack_tracker.cpp b/nucleus/library/tests_application/test_callstack_tracker.cpp index 825f0c70..4823586c 100644 --- a/nucleus/library/tests_application/test_callstack_tracker.cpp +++ b/nucleus/library/tests_application/test_callstack_tracker.cpp @@ -118,7 +118,9 @@ int test_callstack_tracker::run_filestack_middling() int test_callstack_tracker::run_filestack_complex() { FUNCDEF("run_filestack_complex") - int factotum = recursive_factorial(37); + int fact_sought = 12; + int factotum = recursive_factorial(12); + LOG(a_sprintf("factorial of %d was computed as %d", fact_sought, factotum)); if (factotum < 0) { // uh-oh, there was an actual failure of some sort. return 1;