]> git.saurik.com Git - apple/security.git/blobdiff - regressions/test/test-00-test.c
Security-57031.1.35.tar.gz
[apple/security.git] / regressions / test / test-00-test.c
diff --git a/regressions/test/test-00-test.c b/regressions/test/test-00-test.c
deleted file mode 100644 (file)
index bc0ffa8..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (c) 2006-2007 Apple Inc. All Rights Reserved.
- */
-
-#include <stdlib.h>
-
-#include "test_regressions.h"
-
-int test_00_test(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;
-}