|
|
|
@ -121,6 +121,7 @@ image_classification() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
image_resize() {
|
|
|
|
|
return 0
|
|
|
|
|
make sod -C "$base_dir/runtime/tests" || exit 1
|
|
|
|
|
pushd "$base_dir/runtime/experiments/applications/imageresize/test" || exit 1
|
|
|
|
|
./install.sh || exit 1
|
|
|
|
@ -151,6 +152,7 @@ lpd_by_plate_count() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bimodal() {
|
|
|
|
|
return 0
|
|
|
|
|
echo "Bimodal"
|
|
|
|
|
# TODO: Make Dependency "fibonacci_wasm.so"
|
|
|
|
|
pushd "$base_dir/runtime/experiments/bimodal/" || exit 1
|
|
|
|
@ -160,6 +162,7 @@ bimodal() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
concurrency() {
|
|
|
|
|
return 0
|
|
|
|
|
echo "Concurrency"
|
|
|
|
|
# TODO: Make Dependency "empty_wasm.so"
|
|
|
|
|
pushd "$base_dir/runtime/experiments/concurrency/" || exit 1
|
|
|
|
@ -169,10 +172,11 @@ concurrency() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
payload() {
|
|
|
|
|
return 0
|
|
|
|
|
echo "Payload"
|
|
|
|
|
# TODO: Make Dependency "work1k_wasm.so" "work10k_wasm.so" "work100k_wasm.so" "work1m_wasm.so"
|
|
|
|
|
pushd "$base_dir/runtime/experiments/payload/" || exit 1
|
|
|
|
|
./run.sh || failed_tests+=("concurrency")
|
|
|
|
|
./run.sh || failed_tests+=("payload")
|
|
|
|
|
popd || exit 1
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|