-
Notifications
You must be signed in to change notification settings - Fork 795
[SYCL][E2E] dynamic_compress.cpp fix #20446
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SYCL][E2E] dynamic_compress.cpp fix #20446
Conversation
| // XFAIL: (windows && run-mode) || target-native_cpu | ||
| // XFAIL-TRACKER: https://github.com/intel/llvm/issues/20397 |
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.
| // XFAIL: target-native_cpu | |
| // XFAIL-TRACKER: https://github.com/intel/llvm/issues/20397 |
|
|
||
| // RUN: rm -rf %t.dir; mkdir -p %t.dir | ||
| // RUN: %clangxx %{dynamic_lib_options} %S/Inputs/d.cpp \ | ||
| // RUN: -o %t.dir/libdevicecompress_d.%{dynamic_lib_suffix} |
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.
I'm wondering if we should just remove %t.dir and keep all dependencies (_d,_c,_b,_a libraries) in the same directory as test executable.
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.
I'm not sure. Don't we need to use some form of %t so that it can be targeted?
We could have the app output into %t.dir as well, couldn't we?
…untime to inclue %t.dir on Win
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
|
@intel/llvm-gatekeepers please consider merging |
This test started failing after llvm/llvm-project@7ff6973f1
We used to just build the libs in the same directory as the app, but now they are in a subdirectory. Picking up ALL the lib files like we do on Linux should work.