about summary refs log tree commit diff
path: root/tests/ui/threads-sendsync
AgeCommit message (Collapse)AuthorLines
2025-09-26Ignore more failing ui tests for GCC backendGuillaume Gomez-0/+2
2025-08-04Remove `tcp-stress.rs` testJieyou Xu-64/+0
This stress test was originally introduced in 65cca4bd3fa0abe1000662014b3e3ea1420728f5 to detect a UAF in libuv (see RUST-12823), but we no longer use libuv, so remove this test as it was causing flaky timeout failures. See RUST-144878 for discussion.
2025-07-01cleaned up some testsKivooeo-27/+27
2025-06-30moved testsKivooeo-0/+67
2025-06-05Use non-2015 edition paths in tests that do not test for their resolutionLukas Wirth-1/+1
2025-05-30Address review comments.Orson Peters-1/+0
2025-05-29Remove unneeded featureOrson Peters-1/+0
2025-05-29Add testOrson Peters-0/+39
2025-02-03Enable more tests on WindowsBen Kimock-2/+1
2025-01-23tests: use `needs-subprocess` instead of `ignore-{wasm32,emscripten,sgx}`许杰友 Jieyou Xu (Joe)-2/+2
2024-11-26tests: remove `//@ pretty-expanded` usages许杰友 Jieyou Xu (Joe)-11/+0
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
2024-08-24format code in tests/ui/threads-sendsyncTshepang Mbambo-247/+315
2024-05-23delete UI tests that only check internal implementation details of thread-localsjoboet-81/+0
2024-03-11Update test directives for `wasm32-wasip1`Alex Crichton-1/+1
* The WASI targets deal with the `main` symbol a bit differently than native so some `codegen` and `assembly` tests have been ignored. * All `ignore-emscripten` directives have been updated to `ignore-wasm32` to be more clear that all wasm targets are ignored and it's not just Emscripten. * Most `ignore-wasm32-bare` directives are now gone. * Some ignore directives for wasm were switched to `needs-unwind` instead. * Many `ignore-wasm32*` directives are removed as the tests work with WASI as opposed to `wasm32-unknown-unknown`.
2024-03-06compiletest: Add a `//@ needs-threads` directiveAlex Crichton-46/+46
This commit is extracted from #122036 and adds a new directive to the `compiletest` test runner, `//@ needs-threads`. This is intended to capture the need that a target must implement threading to execute a specific test, typically one that uses `std::thread`. This is primarily done for WebAssembly targets which currently do not have threads by default. This enables transitioning a lot of `//@ ignore-wasm*`-style ignores into a more self-documenting `//@ needs-threads` directive. Additionally the `wasm32-wasi-preview1-threads` target, for example, does actually have threads, but isn't tested in CI at this time. This change enables running these tests for that target, but not other wasm targets.
2024-02-16[AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives许杰友 Jieyou Xu (Joe)-140/+140
2024-02-07Update testsr0cky-1/+1
2024-01-05Stabilize THIR unsafeckMatthew Jasper-4/+4
2024-01-05Remove revisions for THIR unsafeckMatthew Jasper-27/+4
This is to make the diff when stabilizing it easier to review.
2023-10-20s/generator/coroutine/Oli Scherer-1/+1
2023-07-29Change default panic handler message format.Mara Bos-1/+1
2023-04-26Update tests.Mara Bos-11/+9
2023-03-10Moved thread_local implementation to sys::commonAyush Singh-5/+5
This allows removing all the platform-dependent code from `library/std/src/thread/local.rs` and `library/std/src/thread/mod.rs` Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
2023-01-11Move /src/test to /testsAlbert Larsan-0/+2211