From 9affd99bcd20a6a0a61f36fed664a96023a7f51a Mon Sep 17 00:00:00 2001 From: Rot127 <45763064+Rot127@users.noreply.github.com> Date: Thu, 27 Feb 2025 09:20:03 +0000 Subject: [PATCH] Give the user some guidance where to add missing enumeration values. (#2639) --- suite/cstest/include/test_compare.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suite/cstest/include/test_compare.h b/suite/cstest/include/test_compare.h index 516ea9ac..7586b688 100644 --- a/suite/cstest/include/test_compare.h +++ b/suite/cstest/include/test_compare.h @@ -165,7 +165,7 @@ typedef int32_t tbool; #actual " != " #expected ": %" PRId32 \ " != %s%s\n", \ actual, expected, \ - found ? "" : " <== id not found"); \ + found ? "" : " <== id not found. Consider adding it in test_mapping.h::cs_enum_map."); \ return ret_val; \ } \ }