Skip to content

Commit ba01a30

Browse files
[SYCL] Remove mentions of host device from in-tree LIT tests (#6683)
1 parent 980677d commit ba01a30

30 files changed

+36
-1285
lines changed

sycl/test/basic_tests/accessor/accessor_property_list_rt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
2-
// RUN: %RUN_ON_HOST %t.out
2+
// RUN: %t.out
33

44
#include <sycl/sycl.hpp>
55

sycl/test/basic_tests/built-ins.cpp

Lines changed: 0 additions & 64 deletions
This file was deleted.

sycl/test/basic_tests/context.cpp

Lines changed: 0 additions & 84 deletions
This file was deleted.

sycl/test/basic_tests/device.cpp

Lines changed: 0 additions & 102 deletions
This file was deleted.

sycl/test/basic_tests/event_async_exception.cpp

Lines changed: 0 additions & 40 deletions
This file was deleted.

sycl/test/basic_tests/exceptions-SYCL-2020.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %clangxx -fsycl %s -o %t.out
2-
// RUN: %RUN_ON_HOST %t.out
2+
// RUN: %t.out
33

44
#include <sycl/sycl.hpp>
55

sycl/test/basic_tests/host_image_accessor_read.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
2-
// RUN: %RUN_ON_HOST %t.out
1+
// RUN: %clangxx -fsycl %s -o %t.out
2+
// RUN: %t.out
33

44
//==---- host_image_accessor_read.cpp - SYCL host image accessor check ----==//
55
//
@@ -22,7 +22,6 @@ int foo(float *image_data) {
2222
sycl::range<3> r(3, 3, 3);
2323
{
2424
sycl::buffer<int, 1> ResultBuf(result, sycl::range<1>(2));
25-
sycl::queue Q;
2625
sycl::image<3> Image(image_data, channelOrder, channelType, r);
2726

2827
sycl::range<2> pitch = Image.get_pitch();

sycl/test/basic_tests/known_identity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %clangxx -fsycl -Xclang -verify %s -Xclang -verify-ignore-unexpected=note,warning -o %t.out -std=c++17
2-
// RUN: %RUN_ON_HOST %t.out
2+
// RUN: %t.out
33
// expected-no-diagnostics
44

55
// This test performs basic checks of has_known_identity and known_identity

sycl/test/basic_tests/linear-host-dev.cpp

Lines changed: 0 additions & 44 deletions
This file was deleted.

sycl/test/basic_tests/marray/marray.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %clangxx -fsycl %s -o %t.out
2-
// RUN: %RUN_ON_HOST %t.out
2+
// RUN: %t.out
33

44
//==--------------- marray.cpp - SYCL marray test --------------------------==//
55
//

0 commit comments

Comments
 (0)