We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49002cc commit 85b1a28Copy full SHA for 85b1a28
.github/workflows/os-llvm-sycl-build.yml
@@ -97,7 +97,11 @@ jobs:
97
- name: Install system components
98
shell: bash -l {0}
99
run: |
100
- sudo apt-get install libtinfo5
+ sudo apt-get install -y libtinfo5
101
+
102
+ - name: Install gdb
103
+ run: |
104
+ sudo apt-get install -y gdb
105
106
- name: Setup Python
107
uses: actions/setup-python@v4
@@ -163,4 +167,4 @@ jobs:
163
167
164
168
source set_allvars.sh
165
169
# skip test due to https://github.com/intel/llvm/issues/9264
166
- python -m pytest -v dpctl/tests -k "not test_event_backend"
170
+ gdb --batch -ex r -ex 'info sharedlibrary' -ex 'set print elements 1000' -ex bt --args python -m pytest -v dpctl/tests -k "not test_event_backend"
0 commit comments