[sw] Add a temporary static check for number of alerts

see #14038

- when the number of alerts change, it can impact the
  crc digest calculated by rom and stored in rom.

- as such, explicitly error in the unittest for now so
  that the user is aware of such a change.

Signed-off-by: Timothy Chen <timothytim@google.com>
diff --git a/sw/device/lib/dif/dif_alert_handler_unittest.cc b/sw/device/lib/dif/dif_alert_handler_unittest.cc
index 061b6ab..8f71759 100644
--- a/sw/device/lib/dif/dif_alert_handler_unittest.cc
+++ b/sw/device/lib/dif/dif_alert_handler_unittest.cc
@@ -25,6 +25,14 @@
 using ::testing::_;
 using ::testing::Return;
 
+// If the assert below fails, please look at #14038.
+// A digest is calculated for the configuration of the alerts,
+// so if the number of alerts change, the digest will be changed
+// as well.  This process is not yet automated, so the user
+// must be aware on how to update the value.
+static_assert(ALERT_HANDLER_PARAM_N_ALERTS == 65,
+              "The number of alerts have changed.");
+
 constexpr int kAlerts = ALERT_HANDLER_PARAM_N_ALERTS;
 constexpr int kLocalAlerts = ALERT_HANDLER_PARAM_N_LOC_ALERT;
 constexpr int kClasses = ALERT_HANDLER_PARAM_N_CLASSES;