[svn:parrot] r42983 - in trunk: . examples/languages/abc/config/makefiles examples/languages/abc/t

fperrad at svn.parrot.org fperrad at svn.parrot.org
Fri Dec 11 09:38:16 UTC 2009


Author: fperrad
Date: Fri Dec 11 09:38:15 2009
New Revision: 42983
URL: https://trac.parrot.org/parrot/changeset/42983

Log:
[abc] fix test infrastructure

Deleted:
   trunk/examples/languages/abc/t/harness
Modified:
   trunk/MANIFEST
   trunk/examples/languages/abc/config/makefiles/root.in
   trunk/examples/languages/abc/t/01-tests.t

Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST	Fri Dec 11 08:29:12 2009	(r42982)
+++ trunk/MANIFEST	Fri Dec 11 09:38:15 2009	(r42983)
@@ -1,7 +1,7 @@
 # ex: set ro:
 # $Id$
 #
-# generated by tools/dev/mk_manifest_and_skip.pl Fri Dec 11 08:24:26 2009 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Fri Dec 11 09:31:03 2009 UT
 #
 # See below for documentation on the format of this file.
 #
@@ -680,7 +680,6 @@
 examples/languages/abc/t/abc_functions                      [examples]
 examples/languages/abc/t/abc_special_variables              [examples]
 examples/languages/abc/t/abc_statement                      [examples]
-examples/languages/abc/t/harness                            [examples]
 examples/languages/squaak/Configure.pl                      [examples]
 examples/languages/squaak/MAINTAINER                        [examples]
 examples/languages/squaak/README                            []doc

Modified: trunk/examples/languages/abc/config/makefiles/root.in
==============================================================================
--- trunk/examples/languages/abc/config/makefiles/root.in	Fri Dec 11 08:29:12 2009	(r42982)
+++ trunk/examples/languages/abc/config/makefiles/root.in	Fri Dec 11 09:38:15 2009	(r42983)
@@ -119,7 +119,7 @@
 	@echo ""
 
 test: build
-	$(PERL) t/harness
+	prove t/*.t
 
 # basic run for missing libs
 test-installable: installable

Modified: trunk/examples/languages/abc/t/01-tests.t
==============================================================================
--- trunk/examples/languages/abc/t/01-tests.t	Fri Dec 11 08:29:12 2009	(r42982)
+++ trunk/examples/languages/abc/t/01-tests.t	Fri Dec 11 09:38:15 2009	(r42983)
@@ -1,5 +1,5 @@
 #!perl
-# Copyright (C) 2001-2008, Parrot Foundation.
+# Copyright (C) 2001-2009, Parrot Foundation.
 # $Id$
 
 use strict;
@@ -11,7 +11,7 @@
 
 =head1 NAME
 
-languages/abc/t/01-tests.t - test harness for Parrot abc
+examples/languages/abc/t/01-tests.t - test harness for Parrot abc
 
 =head1 DESCRIPTION
 
@@ -58,7 +58,7 @@
 
 =head1 SYNOPSIS
 
-$ prove languages/abc/t/01-tests.t
+$ prove examples/languages/abc/t/01-tests.t
 
 =cut
 

Deleted: trunk/examples/languages/abc/t/harness
==============================================================================
--- trunk/examples/languages/abc/t/harness	Fri Dec 11 09:38:15 2009	(r42982)
+++ /dev/null	00:00:00 1970	(deleted)
@@ -1,13 +0,0 @@
-#! perl
-
-# $Id$
-
-# pragmata
-use strict;
-use warnings;
-use 5.008;
-
-use lib qw( . lib ../lib ../../lib ../../../lib );
-
-use Parrot::Test::Harness language => 'abc',
-                          compiler => 'abc.pbc';


More information about the parrot-commits mailing list