Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYCL] quick fix for no_duplicate_devices (#15337)
quick fix for no_duplicate_devices that also works around the extra logging being performed by URLZ The problem is that URLZA added unguarded debug statements. So every run of any sycl app outputs ```ZE_LOADER_DEBUG_TRACE:Using Loader Library Path: ZE_LOADER_DEBUG_TRACE:Tracing Layer Library Path: libze_tracing_layer.so.1``` when running on stderr, even without setting DEBUG_TRACE. This test failed because it uses `&>` to pipe both stderr and stdout to the FileCheck, which then chokes on the unexpected output. This PR fixes this test by using just `>`. The change to URLZA to NOT constantly output is under review, IIRC.
- Loading branch information