From 08b44e1857506eadd3ad2645864d4d1236c1370b Mon Sep 17 00:00:00 2001 From: Elena Torro Date: Tue, 1 Apr 2025 15:30:21 +0200 Subject: [PATCH] :wrench: Return the test output --- render-wasm/test | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/render-wasm/test b/render-wasm/test index 1a5906035..ded373de8 100755 --- a/render-wasm/test +++ b/render-wasm/test @@ -1,4 +1,6 @@ #!/usr/bin/env bash +set -x + _SCRIPT_DIR=$(dirname $0); pushd $_SCRIPT_DIR; @@ -8,4 +10,8 @@ export SKIA_BINARIES_URL="https://github.com/penpot/skia-binaries/releases/downl export _CARGO_PARAMS="--target=x86_64-unknown-linux-gnu"; cargo test $_CARGO_PARAMS --bin render_wasm -- --show-output + +# Exit with the same status code as cargo test +exit $? + popd