]>
git.saurik.com Git - apple/dyld.git/blob - testing/test-cases/dtrace.dtest/main.c
1 // if we ever re-enable this on iOS we will need to add // BOOT_ARGS: dtrace_dof_mode=1
3 // BUILD(macos): $DTRACE -h -s main.d -o $BUILD_DIR/probes.h
4 // BUILD(macos): $CC main.c -I$BUILD_DIR -o $BUILD_DIR/dtrace.exe $DEPENDS_ON $BUILD_DIR/probes.h
5 // BUILD(macos): $DYLD_ENV_VARS_ENABLE $BUILD_DIR/dtrace.exe
7 // BUILD(ios,tvos,watchos,bridgeos):
9 // RUN: $SUDO /usr/sbin/dtrace -o /dev/null 2> /dev/null -n 'dyld_testing*:dtrace.exe:main:callback' -c $RUN_DIR/dtrace.exe
16 #include "test_support.h"
21 int main(int argc
, const char* argv
[], const char* envp
[], const char* apple
[]) {
22 DYLD_TESTING_CALLBACK();
24 if (!DYLD_TESTING_CALLBACK_ENABLED())
25 FAIL("DYLD_TESTING_CALLBACK_ENABLED() returned false");