]> git.saurik.com Git - apple/xnu.git/blame - tests/shared_cache_tests.c
xnu-6153.141.1.tar.gz
[apple/xnu.git] / tests / shared_cache_tests.c
CommitLineData
cb323159
A
1#include <darwintest.h>
2#include <darwintest_utils.h>
3#include <mach-o/dyld.h>
4#include <mach-o/dyld_priv.h>
5#include <TargetConditionals.h>
6
7T_GLOBAL_META(T_META_NAMESPACE("xnu.shared_cache"));
8
9// Give the test up to two minutes because in the failure case we want to invoke update_dyld_shared_cache, which
10// might take a bit to do.
11T_DECL(present, "tests that the device is running with a shared cache", T_META_ASROOT(true), T_META_TIMEOUT(120))
12{
13 size_t shared_cache_len = 0;
14 const void *cache_header = _dyld_get_shared_cache_range(&shared_cache_len);
15 if ((cache_header == NULL) || (shared_cache_len == 0)) {
16#if TARGET_OS_OSX
17 char *tmp_dir = (char *) dt_tmpdir();
18 T_QUIET; T_ASSERT_NOTNULL(tmp_dir, "darwintest created tmp dir");
19 // Try to invoke update_dyld_shared_cache to gather information on why we're not running with a shared cache
20 char *shared_cache_update_cmd[] = { "/usr/bin/update_dyld_shared_cache", "-debug", "-cache_dir", tmp_dir, NULL };
21 pid_t child1 = dt_launch_tool_pipe(shared_cache_update_cmd, false, NULL, ^bool (char *data, __unused size_t data_size, __unused dt_pipe_data_handler_context_t *context) {
22 T_LOG("%s", data);
23 return false;
24 }, ^bool (__unused char *data, __unused size_t data_size, __unused dt_pipe_data_handler_context_t *context) {
25 T_LOG("%s", data);
26 return false;
27 }, BUFFER_PATTERN_LINE, NULL);
28
29 int status = 0;
30 dt_waitpid(child1, &status, NULL, 0);
31
32 T_LOG("waitpid for %d returned with status %d", child1, WEXITSTATUS(status));
33#endif // TARGET_OS_OSX
34 T_ASSERT_NOTNULL(cache_header, "shared cache present");
35 T_ASSERT_GT((int) shared_cache_len, 0, "shared cache has non-zero length");
36 }
37
38 T_PASS("shared cache appears to be present and valid");
39}