]> git.saurik.com Git - apple/security.git/blobdiff - SecurityTests/regressions/test/00testtest.c
Security-57740.51.3.tar.gz
[apple/security.git] / SecurityTests / regressions / test / 00testtest.c
diff --git a/SecurityTests/regressions/test/00testtest.c b/SecurityTests/regressions/test/00testtest.c
deleted file mode 100644 (file)
index e806261..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-#include <stdlib.h>
-
-#include "testmore.h"
-
-int main(int argc, char *const *argv)
-{
-    int rv = 1;
-    plan_tests(6);
-
-    TODO: {
-       todo("ok 0 is supposed to fail");
-
-       rv = ok(0, "ok bad");
-       if (!rv)
-           diag("ok bad not good today");
-    }
-    rv &= ok(1, "ok ok");
-#if 0
-    SKIP: {
-       skip("is bad will fail", 1, 0);
-
-       if (!is(0, 4, "is bad"))
-           diag("is bad not good today");
-    }
-    SKIP: {
-       skip("is ok should not be skipped", 1, 1);
-
-        is(3, 3, "is ok");
-    }
-#endif
-    isnt(0, 4, "isnt ok");
-    TODO: {
-       todo("isnt bad is supposed to fail");
-
-       isnt(3, 3, "isnt bad");
-    }
-    TODO: {
-       todo("cmp_ok bad is supposed to fail");
-
-       cmp_ok(3, &&, 0, "cmp_ok bad");
-    }
-    cmp_ok(3, &&, 3, "cmp_ok ok");
-
-    return 0;
-}