mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
15 lines
318 B
Bash
Executable File
15 lines
318 B
Bash
Executable File
#! /bin/bash
|
|
|
|
nohup ./target/release/wasmer run examples/lua.wasm --disable-cache -- -v
|
|
|
|
if grep "Lua 5.4.0 Copyright (C) 1994-2018 Lua.org, PUC-Rio" ./nohup.out
|
|
then
|
|
echo "lua integration test succeeded"
|
|
rm ./nohup.out
|
|
exit 0
|
|
else
|
|
echo "lua integration test failed"
|
|
rm ./nohup.out
|
|
exit -1
|
|
fi
|