From 445fd641bdc6d876bc01cb84595fd9efa7a79ea4 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Mon, 14 Dec 2009 22:22:27 -0800 Subject: [PATCH] load_bytecode should use the PBC's and update 'make clean' --- Makefile | 2 ++ t/00-sanity.t | 4 ++-- t/03-parse_tapstream_error.t | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index dd3d271..919694e 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,8 @@ all: pbc_to_exe tapir.pbc clean: + rm tapir + rm *.pbc rm t/harness.pbc rm lib/Tapir/*.pbc diff --git a/t/00-sanity.t b/t/00-sanity.t index d9ab2f1..eef51e3 100755 --- a/t/00-sanity.t +++ b/t/00-sanity.t @@ -4,8 +4,8 @@ .sub main :main .include 'test_more.pir' .local pmc tapir, klass - load_bytecode 'lib/Tapir/Parser.pir' - load_bytecode 'lib/Tapir/Stream.pir' + load_bytecode 'lib/Tapir/Parser.pbc' + load_bytecode 'lib/Tapir/Stream.pbc' plan(2) diff --git a/t/03-parse_tapstream_error.t b/t/03-parse_tapstream_error.t index 149007d..c1b177f 100755 --- a/t/03-parse_tapstream_error.t +++ b/t/03-parse_tapstream_error.t @@ -4,8 +4,8 @@ .sub main :main .include 'test_more.pir' .local pmc tapir, klass - load_bytecode 'lib/Tapir/Stream.pir' - load_bytecode 'lib/Tapir/Parser.pir' + load_bytecode 'lib/Tapir/Stream.pbc' + load_bytecode 'lib/Tapir/Parser.pbc' plan(28)