]>
Commit | Line | Data |
---|---|---|
427c49bc A |
1 | /* |
2 | * Copyright (c) 2011 Apple Inc. All Rights Reserved. | |
3 | */ | |
4 | ||
5 | #include <Security/SecPolicyPriv.h> | |
6 | #include <Security/SecInternal.h> | |
7 | ||
8 | #include <test/testpolicy.h> | |
9 | ||
10 | #include "Security_regressions.h" | |
11 | ||
12 | static void tests(void) | |
13 | { | |
14 | SecPolicyRef otaPolicy = SecPolicyCreateMobileAsset(); | |
15 | ||
16 | /* Run the tests. */ | |
17 | runCertificateTestForDirectory(otaPolicy, CFSTR("mobileasset-certs"), NULL); | |
18 | ||
19 | CFReleaseSafe(otaPolicy); | |
20 | } | |
21 | ||
22 | int si_24_sectrust_mobileasset(int argc, char *const *argv) | |
23 | { | |
24 | plan_tests(2); | |
25 | ||
26 | tests(); | |
27 | ||
28 | return 0; | |
29 | } |