Adds test-runtime to start working on tests

This commit is contained in:
Bastian Köcher
2019-03-06 13:51:23 +01:00
parent 1f665b5b55
commit d629154da5
15 changed files with 3267 additions and 1011 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
ROOT=`dirname "$0"`
# A list of directories which contain wasm projects.
SRCS=(
"runtime/test-runtime/wasm"
)
# Make pushd/popd silent.
pushd () {
command pushd "$@" > /dev/null
}
popd () {
command popd "$@" > /dev/null
}