]> git.ozlabs.org Git - ccan/blobdiff - ccan_tools/libtap/tests/ok/ok/test.pl
Removed ccan_tools versions of talloc and libtap in favor of ccan ones.
[ccan] / ccan_tools / libtap / tests / ok / ok / test.pl
diff --git a/ccan_tools/libtap/tests/ok/ok/test.pl b/ccan_tools/libtap/tests/ok/ok/test.pl
deleted file mode 100644 (file)
index 5ea966e..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/perl
-
-use warnings;
-use strict;
-
-use Test::More;
-
-my $rc = 0;
-
-plan tests => 5;
-
-$rc = ok(1 == 1, '1 equals 1');        # Test ok() passes when it should
-diag("Returned: $rc");
-
-$rc = ok(1 == 1, '1 equals 1'); # Used for %d testing in test.c
-diag("Returned: $rc");
-
-$rc = ok(1 == 1, '1 == 1');    # Test ok1() passes when it should
-diag("Returned: $rc");
-
-$rc = ok(1 == 2, '1 equals 2');        # Test ok() fails when it should
-diag("Returned: $rc");
-
-$rc = ok(1 == 2, '1 == 2');    # Test ok1() fails when it should
-diag("Returned: $rc");