Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions sycl/test-e2e/Basic/fpga_tests/fpga_pipes_mixed_usage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
// RUN: %{build} -o %t.out
// RUN: %{run} %t.out

// https://github.com/intel/llvm/issues/13887
// XFAIL: *
// XFAIL: run-mode
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/13887
// If users need to use host pipe feature provided by experimental::pipe, all
// pipes in their design should use the experimental::pipe (as a workround).

Expand Down
3 changes: 2 additions & 1 deletion sycl/test-e2e/ESIMD/assert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
// The test still fails after GPU driver update on Linux. Temporary marking it
// as expected to fail, whilst it is being investigated, see intel/llvm#11359
// FIXME: remove that XFAIL
// XFAIL: linux
// XFAIL: linux && run-mode
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/11359
//
// Hanging on gen12, remove when internal tracker fixed
// UNSUPPORTED: gpu-intel-gen12
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// RUN: %{build} -o %t.out
// RUN: %{run} %t.out

// XFAIL:*
// XFAIL: run-mode

#include "../common.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// RUN: %{build} -D__SPIRV_USE_COOPERATIVE_MATRIX -o %t.out
// RUN: %{run} %t.out

// XFAIL:*
// XFAIL: run-mode

#include "../../common.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// RUN: %{build} -D__SPIRV_USE_COOPERATIVE_MATRIX -o %t.out
// RUN: %{run} %t.out

// XFAIL:*
// XFAIL: run-mode

#include "../common.hpp"

Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/Matrix/joint_matrix_colA_rowB_colC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// RUN: %{build} -o %t.out
// RUN: %{run} %t.out

// XFAIL:*
// XFAIL: run-mode

#include "common.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// VTables are global variables with possibly external linkage and that causes
// them to be copied into every module we produce during device code split
// which in turn leads to multiple definitions error at runtime.
// https://github.com/intel/llvm/issues/15069
// XFAIL: *
// XFAIL: run-mode
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/15069
//
// This test covers a scenario where virtual functions defintion and their uses
// are split into different translation units. In particular:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// function definitions and therefore we won't mark construct kernel as using
// virtual functions and link operation at runtime will fail due to undefined
// references to virtual functions from vtable.
// https://github.com/intel/llvm/issues/15071
// XFAIL: *
// XFAIL: run-mode
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/15071
//
// This test covers a scenario where virtual functions defintion and their uses
// are all split into different translation units.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// function definitions and therefore we won't mark construct kernel as using
// virtual functions and link operation at runtime will fail due to undefined
// references to virtual functions from vtable.
// https://github.com/intel/llvm/issues/15071
// XFAIL: *
// XFAIL: run-mode
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/15071
//
// This test covers a scenario where virtual functions defintion and their uses
// are split into different translation units. In particular:
Expand Down
3 changes: 3 additions & 0 deletions sycl/test-e2e/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@

# Configuration file for the 'lit' test runner.

# TODO: Remove once #15728 is merged
config.available_features.add("run-mode")

# name: The name of this test suite.
config.name = "SYCL"

Expand Down
7 changes: 1 addition & 6 deletions sycl/test/e2e_test_requirements/no-xfail-without-tracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
// tests to match the required format and in that case you should just update
// (i.e. reduce) the number and the list below.
//
// NUMBER-OF-XFAIL-WITHOUT-TRACKER: 156
// NUMBER-OF-XFAIL-WITHOUT-TRACKER: 151
//
// List of improperly XFAIL-ed tests.
// Remove the CHECK once the test has been propely XFAIL-ed.
Expand All @@ -63,7 +63,6 @@
// CHECK-NEXT: Basic/built-ins.cpp
// CHECK-NEXT: Basic/device_event.cpp
// CHECK-NEXT: Basic/diagnostics/handler.cpp
// CHECK-NEXT: Basic/fpga_tests/fpga_pipes_mixed_usage.cpp
// CHECK-NEXT: Basic/image/srgba-read.cpp
// CHECK-NEXT: Basic/max_linear_work_group_size_props.cpp
// CHECK-NEXT: Basic/max_work_group_size_props.cpp
Expand All @@ -78,7 +77,6 @@
// CHECK-NEXT: DeviceCodeSplit/split-per-kernel.cpp
// CHECK-NEXT: DeviceCodeSplit/split-per-source-main.cpp
// CHECK-NEXT: DeviceLib/assert-windows.cpp
// CHECK-NEXT: ESIMD/assert.cpp
// CHECK-NEXT: ESIMD/hardware_dispatch.cpp
// CHECK-NEXT: GroupAlgorithm/root_group.cpp
// CHECK-NEXT: GroupLocalMemory/group_local_memory.cpp
Expand Down Expand Up @@ -208,7 +206,4 @@
// CHECK-NEXT: Scheduler/MultipleDevices.cpp
// CHECK-NEXT: Scheduler/ReleaseResourcesTest.cpp
// CHECK-NEXT: Tracing/buffer_printers.cpp
// CHECK-NEXT: VirtualFunctions/multiple-translation-units/separate-call.cpp
// CHECK-NEXT: VirtualFunctions/multiple-translation-units/separate-vf-defs-and-call.cpp
// CHECK-NEXT: VirtualFunctions/multiple-translation-units/separate-vf-defs.cpp
// CHECK-NEXT: syclcompat/launch/launch_policy_lmem.cpp
Loading