-
Notifications
You must be signed in to change notification settings - Fork 130
[SYCL] Enable tests outside Unix environment (part 1) #475
base: intel
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems legit
@@ -1,5 +1,5 @@ | |||
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out | |||
// RUN: env SYCL_PARALLEL_FOR_RANGE_ROUNDING_TRACE=1 %GPU_RUN_PLACEHOLDER %t.out %GPU_CHECK_PLACEHOLDER | |||
// RUN: %GPU_RUN_PLACEHOLDER env SYCL_PARALLEL_FOR_RANGE_ROUNDING_TRACE=1 %t.out %GPU_CHECK_PLACEHOLDER |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My guess is that one can imply xxx_RUN_PLACE
contains env
(or other OS-dependent stuff) already. Should env
be present on the RUN
command in such a case, then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
env
is LIT builtin command, as well as echo. And echo
can't run env
.
@alexbatashev, please, resolve merge conflicts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alexbatashev, please, resolve new merge conflicts.
This part of the patch fixes some minor CMake misconfigurations and gets rid of
true
Unix utility. Other Unix utilities will be handled by Part 2.