From 28c48cf460607fc5e955333607c519d9cd749432 Mon Sep 17 00:00:00 2001 From: Junseo Yoo Date: Fri, 26 Jul 2024 10:46:07 -0700 Subject: [PATCH] Skip StudioReportLuauAny flag in tests --- tests/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/main.cpp b/tests/main.cpp index 4de391b6..bda1e2fe 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -51,6 +51,9 @@ static bool skipFastFlag(const char* flagName) if (strncmp(flagName, "Debug", 5) == 0) return true; + if (strcmp(flagName, "StudioReportLuauAny") == 0) + return true; + return false; }