diff options
| author | Ralf Jung <post@ralfj.de> | 2024-09-15 12:44:57 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-09-15 12:45:30 +0200 |
| commit | 5f3bec427c1e619dd5bb8d9c4f3d164c6d3d1469 (patch) | |
| tree | c677f6e5e185775cf57816efa9894e32033cc10f | |
| parent | f394c6ce8c1b155df686597c2cee9ecd7eb8f7ce (diff) | |
| download | rust-5f3bec427c1e619dd5bb8d9c4f3d164c6d3d1469.tar.gz rust-5f3bec427c1e619dd5bb8d9c4f3d164c6d3d1469.zip | |
we can test more things on Solarish, and update its status in the README
| -rw-r--r-- | src/tools/miri/README.md | 2 | ||||
| -rwxr-xr-x | src/tools/miri/ci/ci.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/miri/README.md b/src/tools/miri/README.md index 72555e8c40d..d8636915ea8 100644 --- a/src/tools/miri/README.md +++ b/src/tools/miri/README.md @@ -216,9 +216,9 @@ degree documented below): - For every other target with OS `linux`, `macos`, or `windows`, Miri should generally work, but we make no promises and we don't run tests for such targets. - We have unofficial support (not maintained by the Miri team itself) for some further operating systems. + - `solaris` / `illumos`: maintained by @devnexen. Supports `std::{env, thread, sync}`, but not `std::fs`. - `freebsd`: **maintainer wanted**. Supports `std::env` and parts of `std::{thread, fs}`, but not `std::sync`. - `android`: **maintainer wanted**. Support very incomplete, but a basic "hello world" works. - - `solaris` / `illumos`: maintained by @devnexen. Support very incomplete, but a basic "hello world" works. - `wasm`: **maintainer wanted**. Support very incomplete, not even standard output works, but an empty `main` function works. - For targets on other operating systems, Miri might fail before even reaching the `main` function. diff --git a/src/tools/miri/ci/ci.sh b/src/tools/miri/ci/ci.sh index ee8e8d3e1c8..c7be71662bd 100755 --- a/src/tools/miri/ci/ci.sh +++ b/src/tools/miri/ci/ci.sh @@ -152,8 +152,8 @@ case $HOST_TARGET in UNIX="panic/panic panic/unwind concurrency/simple atomic libc-mem libc-misc libc-random env num_cpus" # the things that are very similar across all Unixes, and hence easily supported there TEST_TARGET=x86_64-unknown-freebsd run_tests_minimal $BASIC $UNIX threadname pthread time fs TEST_TARGET=i686-unknown-freebsd run_tests_minimal $BASIC $UNIX threadname pthread time fs - TEST_TARGET=x86_64-unknown-illumos run_tests_minimal $BASIC $UNIX threadname pthread sync available-parallelism time tls - TEST_TARGET=x86_64-pc-solaris run_tests_minimal $BASIC $UNIX threadname pthread sync available-parallelism time tls + TEST_TARGET=x86_64-unknown-illumos run_tests_minimal $BASIC $UNIX thread sync available-parallelism time tls + TEST_TARGET=x86_64-pc-solaris run_tests_minimal $BASIC $UNIX thread sync available-parallelism time tls TEST_TARGET=aarch64-linux-android run_tests_minimal $BASIC $UNIX pthread --skip threadname --skip pthread_cond_timedwait TEST_TARGET=wasm32-wasip2 run_tests_minimal empty_main wasm heap_alloc libc-mem TEST_TARGET=wasm32-unknown-unknown run_tests_minimal empty_main wasm |
