diff --git a/runtime/tests/Makefile b/runtime/tests/Makefile index ba250b5..1c7b214 100644 --- a/runtime/tests/Makefile +++ b/runtime/tests/Makefile @@ -28,9 +28,9 @@ gocr: cp ./gocr/src/gocr.so ${SLEDGE_BIN_DIR}/gocr_wasm.so sod: - make clean all samples samples.wasm -C ./sod/ - cp ./sod/bin/license_plate_detection.awsm /sledge/runtime/bin/lpd_wasm.so - cp ./sod/bin/resize_image.awsm /sledge/runtime/bin/resize_wasm.so + make clean dir samples.so -C ./sod/ + cp ./sod/bin/license_plate_detection.so /sledge/runtime/bin/lpd_wasm.so + cp ./sod/bin/resize_image.so /sledge/runtime/bin/resize_wasm.so %_rt: @mkdir -p ${TMP_DIR} diff --git a/runtime/tests/sod b/runtime/tests/sod index 3bbad27..9728147 160000 --- a/runtime/tests/sod +++ b/runtime/tests/sod @@ -1 +1 @@ -Subproject commit 3bbad277b334744595a64b193e6df6d5d31d9dfd +Subproject commit 9728147fe396ab7946909ab0155c4c6dd77ea082 diff --git a/test.sh b/test.sh index 437636b..60e8dd6 100755 --- a/test.sh +++ b/test.sh @@ -16,31 +16,31 @@ cd "$base_dir/runtime" && make clean all || exit 1 # OCR Build # FIXME: gocr incorectly reports up to date -cd "$base_dir/runtime/tests" && make -B clean gocr || exit 1 +# cd "$base_dir/runtime/tests" && make -B clean gocr || exit 1 # OCR Tests -cd "$base_dir/runtime/experiments/applications/ocr/hyde" && ./run.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ocr/handwriting" && ./run.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ocr/fivebyeight" && ./run.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ocr/by_word" && ./install.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ocr/by_word" && ./run.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ocr/by_font" && ./install.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ocr/by_font" && ./run.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ocr/by_dpi" && ./install.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ocr/by_dpi" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/hyde" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/handwriting" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/fivebyeight" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/by_word" && ./install.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/by_word" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/by_font" && ./install.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/by_font" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/by_dpi" && ./install.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ocr/by_dpi" && ./run.sh || exit 1 # EKF Build -cd "$base_dir/runtime/tests" && make -B clean tinyekf || exit 1 +# cd "$base_dir/runtime/tests" && make -B clean tinyekf || exit 1 # EKF Tests -cd "$base_dir/runtime/experiments/applications/ekf/by_iteration" && ./run.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/ekf/one_iteration" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ekf/by_iteration" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/ekf/one_iteration" && ./run.sh || exit 1 # cifar10 Build -cd "$base_dir/runtime/tests" && make -B clean cifar10 || exit 1 +# cd "$base_dir/runtime/tests" && make -B clean cifar10 || exit 1 # cifar10 Tests -cd "$base_dir/runtime/experiments/applications/imageclassification" && ./run.sh || exit 1 +# cd "$base_dir/runtime/experiments/applications/imageclassification" && ./run.sh || exit 1 # sod Build cd "$base_dir/runtime/tests" && make -B clean sod || exit 1 @@ -51,4 +51,3 @@ cd "$base_dir/runtime/experiments/applications/imageresize/test" && ./run.sh || cd "$base_dir/runtime/experiments/applications/imageresize/by_resolution" && ./install.sh || exit 1 cd "$base_dir/runtime/experiments/applications/imageresize/by_resolution" && ./run.sh || exit 1 cd "$base_dir/runtime/experiments/applications/licenseplate/by_plate_count" && ./run.sh || exit 1 -cd "$base_dir/runtime/experiments/applications/licenseplate" && ./run.sh || exit 1