1 // Copyright (c) 2024 Apple Inc. All rights reserved. 2 3 #include <darwintest.h> 4 #include <sys/sysctl.h> 5 #include <unistd.h> 6 7 #include "exported_headers.h" 8 9 T_GLOBAL_META(T_META_NAMESPACE("xnu.scheduler"), 10 T_META_RADAR_COMPONENT_NAME("xnu"), 11 T_META_RADAR_COMPONENT_VERSION("scheduler")); 12 13 T_DECL(headers_compat_c, "Verify that scheduler headers are properly guarded", 14 T_META_ENABLED(false) // Test is at build time. 15 ) { 16 // If we're here, it compiled! 17 T_PASS("Great news: it compiles."); 18 19 T_END; 20 } 21