Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,4 @@ llvm/test/Instrumentation/MemorySanitizer/ @intel/dpcpp-sanitizers-review
llvm/test/Instrumentation/ThreadSanitizer/ @intel/dpcpp-sanitizers-review
sycl/test-e2e/AddressSanitizer/ @intel/dpcpp-sanitizers-review
sycl/test-e2e/MemorySanitizer/ @intel/dpcpp-sanitizers-review
sycl/test-e2e/ThreadSanitizer/ @intel/dpcpp-sanitizers-review
2 changes: 2 additions & 0 deletions sycl/test-e2e/ThreadSanitizer/check_both_read.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// REQUIRES: linux, cpu || (gpu && level_zero)
// RUN: %{build} %device_tsan_flags -O0 -g -o %t1.out
// RUN: %{run} %t1.out 2>&1 | FileCheck %s
// UNSUPPORTED: true
// UNSUPPORTED-TRACKER: CMPLRLLVM-66203
#include "sycl/detail/core.hpp"
#include "sycl/usm.hpp"

Expand Down
2 changes: 2 additions & 0 deletions sycl/test-e2e/ThreadSanitizer/check_no_race.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// RUN: %{run} %t1.out 2>&1 | FileCheck %s
// RUN: %{build} %device_tsan_flags -O2 -g -o %t2.out
// RUN: %{run} %t2.out 2>&1 | FileCheck %s
// UNSUPPORTED: true
// UNSUPPORTED-TRACKER: CMPLRLLVM-66203
#include "sycl/detail/core.hpp"
#include "sycl/usm.hpp"

Expand Down
1 change: 1 addition & 0 deletions sycl/test-e2e/ThreadSanitizer/check_usm.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// REQUIRES: linux, cpu || (gpu && level_zero)
// ALLOW_RETRIES: 10
// RUN: %{build} %device_tsan_flags -DMALLOC_DEVICE -O0 -g -o %t1.out
// RUN: %{run} %t1.out 2>&1 | FileCheck %s
// RUN: %{build} %device_tsan_flags -DMALLOC_DEVICE -O2 -g -o %t2.out
Expand Down
2 changes: 2 additions & 0 deletions sycl/test-e2e/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ def parseTestScript(self, test):
test.requires += parsed["REQUIRES:"] or []
test.unsupported += test.config.unsupported_features
test.unsupported += parsed["UNSUPPORTED:"] or []
if parsed["ALLOW_RETRIES:"]:
test.allowed_retries = parsed["ALLOW_RETRIES:"][0]

test.intel_driver_req = parsed["REQUIRES-INTEL-DRIVER:"]

Expand Down