From 47302c0ec506b1554f176c4170cc70d26c3e8f9a Mon Sep 17 00:00:00 2001 From: Andrii Kurdiumov Date: Sat, 14 Feb 2026 16:12:51 +0100 Subject: [PATCH] Enable test condition for static variables --- Cesium.IntegrationTests/variable_storage.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Cesium.IntegrationTests/variable_storage.c b/Cesium.IntegrationTests/variable_storage.c index 1a1a7f56..b15c6766 100644 --- a/Cesium.IntegrationTests/variable_storage.c +++ b/Cesium.IntegrationTests/variable_storage.c @@ -16,9 +16,7 @@ int main(void) { if (x != 42) return -1; if (counter() != 1) return -2; - // I think I need https://github.com/ForNeVeR/Cesium/pull/366 - // to see whole impact how initialization can be fixed for static variables. - //if (counter() != 2) return -3; + if (counter() != 2) return -3; return 42; }