Skip to content

Commit

Permalink
Merge remote branch 'moritz/spectests'
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Jan 14, 2011
2 parents 4e9a91d + d4bbaea commit 56c80b0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
5 changes: 2 additions & 3 deletions t/fudgeandrun
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ use warnings;

my @OPTS = ('--keep-exit-code', 'niecza');

my $nt = `../roast/fudge @OPTS $ARGV[0]`;
chomp($nt);
system("./niecza_eval", $nt);
my $nt = `../roast/fudge @OPTS @ARGV`;
system("./niecza_eval", split ' ', $nt);
18 changes: 16 additions & 2 deletions t/run_spectests
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
#!/bin/sh
prove -e 't/fudgeandrun' ../roast/S32-num/power.t
prove -e 't/fudgeandrun' ../roast/S04-statements/if.t
prove -e 't/fudgeandrun' \
../roast/S02-whitespace_and_comments/begin_end_pod.t \
../roast/S02-builtin_data_types/parsing-bool.t \
../roast/S02-whitespace_and_comments/pod-in-multi-line-exprs.t \
../roast/S03-operators/scalar-assign.t \
../roast/S03-operators/assign-is-not-binding.t \
../roast/S03-operators/relational.t \
../roast/S04-statements/if.t \
../roast/S04-statement-modifiers/unless.t \
../roast/S04-statements/if.t \
../roast/S04-statements/until.t \
../roast/S06-traits/is-rw.t \
../roast/S09-autovivification/autoincrement.t \
../roast/S12-class/inheritance-class-methods.t \
../roast/S32-str/append.t \
../roast/S32-num/power.t \

0 comments on commit 56c80b0

Please sign in to comment.