aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-14 23:42:05 +0800
committerobscuren <geffobscura@gmail.com>2015-03-14 23:42:05 +0800
commit95711bc2dd0af71c741871007cecad12be8076ad (patch)
tree1d59ced40b3823608710716edef523399336d88a /Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh
parent387f6bba3e221dac6f9884b3f9aba98d6b8591cf (diff)
downloadgo-tangerine-95711bc2dd0af71c741871007cecad12be8076ad.tar
go-tangerine-95711bc2dd0af71c741871007cecad12be8076ad.tar.gz
go-tangerine-95711bc2dd0af71c741871007cecad12be8076ad.tar.bz2
go-tangerine-95711bc2dd0af71c741871007cecad12be8076ad.tar.lz
go-tangerine-95711bc2dd0af71c741871007cecad12be8076ad.tar.xz
go-tangerine-95711bc2dd0af71c741871007cecad12be8076ad.tar.zst
go-tangerine-95711bc2dd0af71c741871007cecad12be8076ad.zip
Updated ethash
Diffstat (limited to 'Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh')
-rw-r--r--Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh b/Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh
index eb38f6dfc..fd3508609 100644
--- a/Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh
+++ b/Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh
@@ -14,7 +14,12 @@ TEST_DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
echo -e "\n################# Testing JS ##################"
# TODO: Use mocha and real testing tools instead of rolling our own
cd $TEST_DIR/../js
-node test.js
+if [ -x "$(which nodejs)" ] ; then
+ nodejs test.js
+fi
+if [ -x "$(which node)" ] ; then
+ node test.js
+fi
echo -e "\n################# Testing C ##################"
$TEST_DIR/c/test.sh