Skip to content

Commit 75b3cdb

Browse files
authored
[SYCL][ESIMD] Fix return value for test (#8992)
Right now it's returning 1 so the test is failing. --------- Signed-off-by: Sarnie, Nick <[email protected]>
1 parent c11621f commit 75b3cdb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sycl/test-e2e/InvokeSimd/Spec/simd_mask_merge.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,6 @@ int main() {
100100
}
101101

102102
std::cout << (err_cnt > 0 ? "FAILED\n" : "Passed\n");
103-
return err_cnt == 0;
103+
assert(err_cnt == 0);
104+
return 0;
104105
}

0 commit comments

Comments
 (0)