From f2b952fc131fc21610c2c448e926cc98ce988350 Mon Sep 17 00:00:00 2001 From: Daniel Barry Date: Mon, 26 Aug 2024 14:56:56 +0000 Subject: [PATCH] rocm: fix typo in component tests Fix so that when a component test fails, it says "FAILED". --- src/components/rocm/tests/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/rocm/tests/common.h b/src/components/rocm/tests/common.h index baa49417b..44c0d301f 100644 --- a/src/components/rocm/tests/common.h +++ b/src/components/rocm/tests/common.h @@ -18,7 +18,7 @@ hip_test_fail(const char *file __attribute__((unused)), int line, { const char *string; - fprintf(stdout, "FAILER!!!"); + fprintf(stdout, "FAILED!!!"); fprintf(stdout, "\nLine # %d ", line); string = hipGetErrorString(retval);