Skip to content
Closed
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 sycl/test-e2e/GroupAlgorithm/root_group.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TIMEOUT: 600
// Fails with opencl non-cpu, enable when fixed.
// XFAIL: (opencl && !cpu)
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/14641
Expand Down
1 change: 1 addition & 0 deletions sycl/test-e2e/WorkGroupMemory/basic_usage.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TIMEOUT: 1200
// UNSUPPORTED: hip
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17339
// UNSUPPORTED: level_zero_v2_adapter
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TIMEOUT: 600
// REQUIRES: aspect-ext_oneapi_bindless_images
// REQUIRES: aspect-ext_oneapi_image_array

Expand Down
1 change: 1 addition & 0 deletions sycl/test-e2e/bindless_images/read_sampled.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TIMEOUT: 600
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this documented anywhere? I didn't realize we can set individual test time limits like this and I don't see it used anywhere else.

// REQUIRES: aspect-ext_oneapi_bindless_images

// UNSUPPORTED: hip
Expand Down
1 change: 1 addition & 0 deletions sycl/test-e2e/bindless_images/vulkan_interop/mipmaps.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TIMEOUT: 600
// REQUIRES: aspect-ext_oneapi_bindless_images
// REQUIRES: aspect-ext_oneapi_external_memory_import
// REQUIRES: aspect-ext_oneapi_mipmap
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// TIMEOUT: 1200
// REQUIRES: aspect-ext_oneapi_bindless_images
// REQUIRES: aspect-ext_oneapi_external_memory_import || (windows && level_zero && aspect-ext_oneapi_bindless_images)
// REQUIRES: vulkan
Expand Down
4 changes: 2 additions & 2 deletions sycl/test-e2e/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1198,9 +1198,9 @@ def get_sycl_ls_verbose(sycl_device, env):
import psutil

if config.test_mode == "run-only":
lit_config.maxIndividualTestTime = 300
lit_config.maxIndividualTestTime = 1200
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

im not sure about this, can we not run with lower makeopts on this machines?

fyi @uditagarwal97

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1. If a test takes too long to run, we could instead try to split the test.

else:
lit_config.maxIndividualTestTime = 600
lit_config.maxIndividualTestTime = 1600

except ImportError:
pass
Loading