Skip to content

Commit 495f760

Browse files
committed
run some aarch64 tests with miri on CI
1 parent dceb504 commit 495f760

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,10 +343,13 @@ jobs:
343343
- uses: actions/checkout@v6
344344
- name: Install Rust
345345
run: rustup update nightly && rustup default nightly && rustup component add miri
346-
- name: Aarch64 load/store roundtrip
346+
- name: Run miri tests
347347
env:
348348
TARGET: "aarch64-unknown-linux-gnu"
349-
run: cargo miri test -p core_arch --target aarch64-unknown-linux-gnu -- test_vld3q
349+
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
350353
351354
conclusion:
352355
needs:

aarch64-miri-tests.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test_vld3q
2+
neon::load_tests
3+
neon::store_tests

0 commit comments

Comments
 (0)