Loading...
--- xnu/xnu-12377.121.6/tests/shared_cache_tests.c
+++ xnu/xnu-6153.41.3/tests/shared_cache_tests.c
@@ -8,15 +8,10 @@
// Give the test up to two minutes because in the failure case we want to invoke update_dyld_shared_cache, which
// might take a bit to do.
-T_DECL(present, "tests that the device is running with a shared cache", T_META_ASROOT(true), T_META_TIMEOUT(120), T_META_TAG_VM_NOT_PREFERRED)
+T_DECL(present, "tests that the device is running with a shared cache", T_META_ASROOT(true), T_META_TIMEOUT(120))
{
size_t shared_cache_len = 0;
const void *cache_header = _dyld_get_shared_cache_range(&shared_cache_len);
-
-#if TARGET_OS_OSX
- T_SKIP("shared cache testing support incomplete (57267667)");
-#endif /* TARGET_OS_OSX */
-
if ((cache_header == NULL) || (shared_cache_len == 0)) {
#if TARGET_OS_OSX
char *tmp_dir = (char *) dt_tmpdir();