dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / strip-all / test.py
1 #!/usr/bin/python2.7
2
3 import os
4 import KernelCollection
5
6 # Check that we stripped all the symbols
7
8 def check(kernel_cache):
9 kernel_cache.buildKernelCollection("arm64", "/strip-all/main.kc", "/strip-all/main.kernel", "/strip-all/extensions", ["com.apple.foo", "com.apple.bar"], ["-strip-all"])
10 kernel_cache.analyze("/strip-all/main.kc", ["-layout", "-arch", "arm64"])
11
12 # Check the symbols
13 kernel_cache.analyze("/strip-all/main.kc", ["-symbols", "-arch", "arm64"])
14 assert len(kernel_cache.dictionary()["dylibs"]) == 3
15 # kernel
16 assert kernel_cache.dictionary()["dylibs"][0]["name"] == "com.apple.kernel"
17 assert kernel_cache.dictionary()["dylibs"][0]["global-symbols"] == "none"
18 assert kernel_cache.dictionary()["dylibs"][0]["local-symbols"] == "none"
19 # bar
20 assert kernel_cache.dictionary()["dylibs"][1]["name"] == "com.apple.bar"
21 assert kernel_cache.dictionary()["dylibs"][1]["global-symbols"] == "none"
22 assert kernel_cache.dictionary()["dylibs"][1]["local-symbols"] == "none"
23 # foo
24 assert kernel_cache.dictionary()["dylibs"][2]["name"] == "com.apple.foo"
25 assert kernel_cache.dictionary()["dylibs"][2]["global-symbols"] == "none"
26 assert kernel_cache.dictionary()["dylibs"][2]["local-symbols"] == "none"
27
28
29 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-static -mkernel -nostdlib -Wl,-add_split_seg_info -Wl,-rename_section,__TEXT,__text,__TEXT_EXEC,__text -Wl,-e,__start -Wl,-pagezero_size,0x0 -Wl,-pie main.c -o main.kernel
30 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info foo.c -o extensions/foo.kext/foo
31 # [~]> xcrun -sdk iphoneos.internal cc -arch arm64 -Wl,-kext -mkernel -nostdlib -Wl,-add_split_seg_info bar.c -o extensions/bar.kext/bar
32 # [~]> rm -r extensions/*.kext/*.ld
33