Mercurial > hg > Members > anatofuz > nqp-cbc-tools
view dotest @ 9:1fda58f3b60f
tweek print codesgments for log2.pl
author | anatofuz |
---|---|
date | Mon, 05 Nov 2018 16:51:53 +0900 |
parents | 665fb2069aec |
children |
line wrap: on
line source
#!/bin/zsh if [ $# -lt 1 ]; then echo 'useage:) $cbc-tools/this.sh vmtest/nqp origin' exit 1 fi NQP_ORIGINAL="/mnt/dalmore-home/one/src/MoarVM_Original/nqp" TARGET_DIR=$1 MOAR="../MoarVM/moar" if [ $# -eq 2 ]; then MOAR="../../build_perl6/MoarVM_Orig/bin/moar" fi echo "*use ${MOAR}" foreach testmoar (${TARGET_DIR}/*.moarvm) echo $testmoar ${MOAR} --libpath=${NQP_ORIGINAL}/gen/moar/stage2 $testmoar end