From 5a205d84c842c8709819898bd6ee4a74c1f91a3d Mon Sep 17 00:00:00 2001 From: Huy Nguyen Date: Thu, 1 Oct 2020 21:27:55 -0700 Subject: [PATCH] Fix failing ASConfigurationTests (#1923) * Fix failing ASConfigurationTests * Update configuration.json as well --- Schemas/configuration.json | 7 ++++--- Tests/ASConfigurationTests.mm | 2 ++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Schemas/configuration.json b/Schemas/configuration.json index 4ce900e5d..481663b2d 100644 --- a/Schemas/configuration.json +++ b/Schemas/configuration.json @@ -13,7 +13,6 @@ "items": { "type": "string", "enum": [ - "exp_graphics_contexts", "exp_text_node", "exp_interface_state_coalesce", "exp_infer_layer_defaults", @@ -22,8 +21,10 @@ "exp_skip_clear_data", "exp_did_enter_preload_skip_asm_layout", "exp_dispatch_apply", - "exp_oom_bg_dealloc_disable", - "exp_do_not_cache_accessibility_elements", + "exp_drawing_global", + "exp_optimize_data_controller_pipeline", + "exp_disable_global_textkit_lock", + "exp_main_thread_only_data_controller", ] } } diff --git a/Tests/ASConfigurationTests.mm b/Tests/ASConfigurationTests.mm index 8f66f0753..4ebd580fb 100644 --- a/Tests/ASConfigurationTests.mm +++ b/Tests/ASConfigurationTests.mm @@ -28,6 +28,8 @@ ASExperimentalDispatchApply, ASExperimentalDrawingGlobal, ASExperimentalOptimizeDataControllerPipeline, + ASExperimentalDisableGlobalTextkitLock, + ASExperimentalMainThreadOnlyDataController, }; @interface ASConfigurationTests : ASTestCase