We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3034ed commit 27b22afCopy full SHA for 27b22af
2 files changed
.github/workflows/main.yml
@@ -345,10 +345,13 @@ jobs:
345
- uses: actions/checkout@v6
346
- name: Install Rust
347
run: rustup update nightly && rustup default nightly && rustup component add miri
348
- - name: Aarch64 load/store roundtrip
+ - name: Run miri tests
349
env:
350
TARGET: "aarch64-unknown-linux-gnu"
351
- run: cargo miri test -p core_arch --target aarch64-unknown-linux-gnu -- test_vld3q
+ run: |
352
+ # read filters and join them with a space.
353
+ FILTERS=$(cat aarch64-miri-tests.txt | tr '\n' ' ')
354
+ cargo miri test -p core_arch --target aarch64-unknown-linux-gnu -- $FILTERS
355
356
conclusion:
357
needs:
aarch64-miri-tests.txt
@@ -0,0 +1,3 @@
1
+test_vld3q
2
+neon::load_tests
3
+neon::store_tests
0 commit comments