Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
make js-test passes test t/nqp/01-literals.t with a concatenated mini…
…-setting.
  • Loading branch information
pmurias committed Aug 14, 2014
1 parent 4fb3a7b commit ac0aada
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions nqp-js-with-setting
@@ -0,0 +1,3 @@
#!/bin/sh
cat src/vm/js/mini-setting $1 > tmp
./nqp-p src/vm/js/bin/nqp-js.nqp tmp | node
3 changes: 2 additions & 1 deletion src/vm/js/bin/run_tests
@@ -1,4 +1,5 @@
#!/bin/bash
# 19 and 30 where moved out as they were parrot specific, 52,54 is missing, we can't pass 49 till we are bootstraped
echo 'No tests pass as we are in the early stages of a rewrite/refactor'
#echo 'No tests pass as we are in the early stages of a rewrite/refactor'
prove -e './nqp-js-with-setting' t/nqp/01*
#prove -e './nqp-js' t/nqp/{01..29}*.t t/nqp/{31..48}* t/nqp/{50,51,53}* t/nqp/{55..81}* t/nqp/83* t/serialization/0{2,3}*.t
6 changes: 6 additions & 0 deletions src/vm/js/mini-setting
@@ -0,0 +1,6 @@
sub print($arg) {
nqp::print($arg);
}
sub say($arg) {
nqp::say($arg);
}

0 comments on commit ac0aada

Please sign in to comment.