]>
git.saurik.com Git - apple/security.git/blob - regressions/test/test-00-test.c
2 * Copyright (c) 2006-2007 Apple Inc. All Rights Reserved.
7 #include "test_regressions.h"
9 int test_00_test(int argc
, char *const *argv
)
15 todo("ok 0 is supposed to fail");
19 diag("ok bad not good today");
24 skip("is bad will fail", 1, 0);
26 if (!is(0, 4, "is bad"))
27 diag("is bad not good today");
30 skip("is ok should not be skipped", 1, 1);
35 isnt(0, 4, "isnt ok");
37 todo("isnt bad is supposed to fail");
39 isnt(3, 3, "isnt bad");
42 todo("cmp_ok bad is supposed to fail");
44 cmp_ok(3, &&, 0, "cmp_ok bad");
46 cmp_ok(3, &&, 3, "cmp_ok ok");