Skip to content

Commit 903279c

Browse files
[SYCL] disabling two test clauses while opening a JIRA (#16699)
to address post-commit failure here: #16693 This fpga_pipe.cpp test has been passing because it was using the wrong binary operation to fold together test results. I fixed this in this and some other tests recently. My PR passed the CI because, apparently, we don't have exercise the FPGA accelerator (or emulator) there. fpga_pipe.cpp tests 12 different combinations, the last two ( `test_array_th_nb_pipe` and `test_array_th_bl_pipe` ) are failing. Opening a JIRA.
1 parent eb8101e commit 903279c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

sycl/test-e2e/Basic/fpga_tests/fpga_pipes.cpp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,12 @@ int main() {
345345
Error |= test_multiple_bl_pipe</*test number*/ 10>(Queue);
346346

347347
// Test for an array data passing through a pipe
348-
Error |= test_array_th_nb_pipe</*test number*/ 11>(Queue);
349-
Error |= test_array_th_bl_pipe</*test number*/ 12>(Queue);
348+
// These two tests are failing in post-commit testing (
349+
// https://github.com/intel/llvm/issues/16693 ) disabling them, rather than
350+
// the entire test.
351+
352+
// Error |= test_array_th_nb_pipe</*test number*/ 11>(Queue);
353+
// Error |= test_array_th_bl_pipe</*test number*/ 12>(Queue);
350354

351355
// TODO Remove when #14308 is closed
352356
std::cerr << "DEBUG: Finished with result " << Error << std::endl;

0 commit comments

Comments
 (0)