Disable kAppImageMayContainStrings

Disabled until UpdateInternStrings is fixed.

Bug: 117846779
Test: test-art-host-gtest
Change-Id: I78129616ebdba09a695c09967a34395e0d6f4a85
diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h
index a5157df..1460562 100644
--- a/runtime/common_runtime_test.h
+++ b/runtime/common_runtime_test.h
@@ -191,6 +191,12 @@
   DISALLOW_COPY_AND_ASSIGN(CheckJniAbortCatcher);
 };
 
+#define TEST_DISABLED() \
+  if ((true)) { \
+    printf("WARNING: TEST DISABLED\n"); \
+    return; \
+  }
+
 #define TEST_DISABLED_FOR_ARM() \
   if (kRuntimeISA == InstructionSet::kArm || kRuntimeISA == InstructionSet::kThumb2) { \
     printf("WARNING: TEST DISABLED FOR ARM\n"); \