Skip to content

Commit

Permalink
testing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cperkinsintel committed Jul 12, 2024
1 parent adb0d12 commit 6600045
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ bool SYCL_Compilation_Available() {
std::filesystem::path DumpPath = tmp / (id + "_version.txt");
std::string Compiler = getCompilerName();
std::string TestCommand =
Compiler + " --version &> " + DumpPath.make_preferred().string();
Compiler + " --version > " + DumpPath.make_preferred().string();
int result = std::system(TestCommand.c_str());

return (result == 0);
Expand Down
1 change: 1 addition & 0 deletions sycl/test-e2e/KernelCompiler/kernel_compiler_sycl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ void test_build_and_run() {
"kernel bundle extension: "
<< q.get_device().get_info<sycl::info::device::name>()
<< std::endl;
assert(ok);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/no_sycl_hpp_in_e2e_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// CHECK-DAG: no_sycl_hpp_in_e2e_tests.cpp
// CHECK-DAG: lit.cfg.py
//
// CHECK-NUM-MATCHES: 4
// CHECK-NUM-MATCHES: 5
//
// This test verifies that `<sycl/sycl.hpp>` isn't used in E2E tests. Instead,
// fine-grained includes should used, see
Expand Down

0 comments on commit 6600045

Please sign in to comment.