Skip to content

Commit 1aaf6a1

Browse files
author
Alberto Cabrera
committed
Restored return code to see if the test actually fails.
Signed-off-by: Alberto Cabrera <[email protected]>
1 parent e7a5e8b commit 1aaf6a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sycl/test-e2e/syclcompat/math/math_compare.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,5 +397,5 @@ int main() {
397397
test_unordered_compare_mask);
398398

399399
std::cerr << "If this is printed, the test was successful" << std::endl;
400-
return 1;
400+
return 0;
401401
}

sycl/test-e2e/syclcompat/math/math_ops.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,5 +422,5 @@ int main() {
422422
test_container_clamp);
423423

424424
std::cerr << "If this is printed, the test was successful" << std::endl;
425-
return 1; // INFO: Making it fail temporarily to trigger the CI log
425+
return 0; // INFO: Making it fail temporarily to trigger the CI log
426426
}

0 commit comments

Comments
 (0)