From b9252dcdc5fa2c991803c9a2a43e3d8fcfc77ee7 Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Mon, 11 Nov 2024 13:39:59 -0800 Subject: [PATCH] Add message at the end of smoke tests to indicate successful completion. PiperOrigin-RevId: 695467154 --- images/gpu/cuda-tests/run_smoke.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/images/gpu/cuda-tests/run_smoke.sh b/images/gpu/cuda-tests/run_smoke.sh index bedca91bf..d870a550b 100755 --- a/images/gpu/cuda-tests/run_smoke.sh +++ b/images/gpu/cuda-tests/run_smoke.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Copyright 2021 The gVisor Authors. # @@ -14,8 +14,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -set -eux +set -euxo pipefail cd / nvcc cuda_malloc.cu -o cuda_malloc ./cuda_malloc +echo 'All tests passed'