summaryrefslogtreecommitdiff
path: root/atarist/test/tbinmode
diff options
context:
space:
mode:
Diffstat (limited to 'atarist/test/tbinmode')
-rw-r--r--atarist/test/tbinmode12
1 files changed, 0 insertions, 12 deletions
diff --git a/atarist/test/tbinmode b/atarist/test/tbinmode
deleted file mode 100644
index 4cf4f7827f..0000000000
--- a/atarist/test/tbinmode
+++ /dev/null
@@ -1,12 +0,0 @@
-open(FP, ">bintest") || die "Can't open bintest for write\n";
-binmode FP;
-print FP pack("C*", 0xaa, 0x55, 0xaa, 0x55,
- 0xff, 0x0d, 0x0a);
-close FP;
-
-open(FP, "<bintest") || die "Can't open bintest for read\n";
-binmode FP;
-@got = unpack("C*", <FP>);
-close FP;
-printf "expect:\t7 elements: aa 55 aa 55 ff 0d 0a\n";
-printf "got:\t%d elements: %x %x %x %x %x %02x %02x\n", $#got+1-$[, @got;