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