Skip to content

Commit b4f982c

Browse files
committed
WIP
1 parent 303aa45 commit b4f982c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ help:
99
@echo " push: run the basic test suite and git push"
1010

1111
# Common tests - also run by CI
12+
test: export RAKUDO_RAKUAST=1
1213
test:
1314
if [ "${TEST_JOBS}" != "" ]; then prove --ext=rakutest -j ${TEST_JOBS} -e raku t; else prove --ext=rakutest -e raku t; fi
1415

1516
# Extended tests - should be run by authors before committing
1617
xtest:
17-
if [ "${TEST_JOBS}" != "" ]; then prove --ext=rakutest -j ${TEST_JOBS} -e raku t xt; else prove --ext=rakutest -e raku t xt; fi
18+
RAKUDO_RAKUAST=1 [ "${TEST_JOBS}" != "" ]; then prove --ext=rakutest -j ${TEST_JOBS} -e raku t xt; else prove --ext=rakutest -e raku t xt; fi
1819

1920
push: test
2021
git pull --rebase && git push

t/03-tests-valid.rakutest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ if @files {
2323
my %data;
2424
my $lock = Lock::Async.new;
2525

26+
# -c doesn't work 100% under RakuAST yet
27+
%*ENV<RAKUDO_RAKUAST>='';
28+
2629
my $verbose = %*ENV<RAKU_DOC_TEST_VERBOSE> // False;
2730

2831
@files.race.map: -> $file {

0 commit comments

Comments
 (0)