mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
15 lines
320 B
Bash
15 lines
320 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
nohup ./target/release/wasmer run examples/cowsay.wasm --disable-cache -- "hello integration"
|
||
|
|
||
|
if grep "hello integration" ./nohup.out
|
||
|
then
|
||
|
echo "cowsay wasi integration test succeeded"
|
||
|
rm ./nohup.out
|
||
|
exit 0
|
||
|
else
|
||
|
echo "cowsay wasi integration test failed"
|
||
|
rm ./nohup.out
|
||
|
exit -1
|
||
|
fi
|