diff options
| author | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2024-10-11 18:42:20 +0800 |
|---|---|---|
| committer | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2024-10-31 18:20:11 +0800 |
| commit | 0bbe07e8fff140eb2a2f1acffe5aa61fc7f4b153 (patch) | |
| tree | 8734483d5e7d9bb9505d6263ed24ca80602474ad /tests/ui/compiletest-self-test | |
| parent | a8b34f58cf7d21a822786f7b2599453b71ace5db (diff) | |
| download | rust-0bbe07e8fff140eb2a2f1acffe5aa61fc7f4b153.tar.gz rust-0bbe07e8fff140eb2a2f1acffe5aa61fc7f4b153.zip | |
tests/ui: add `minicore` compiletest self-test
Diffstat (limited to 'tests/ui/compiletest-self-test')
| -rw-r--r-- | tests/ui/compiletest-self-test/minicore-smoke-test.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/compiletest-self-test/minicore-smoke-test.rs b/tests/ui/compiletest-self-test/minicore-smoke-test.rs new file mode 100644 index 00000000000..ec879f2852e --- /dev/null +++ b/tests/ui/compiletest-self-test/minicore-smoke-test.rs @@ -0,0 +1,20 @@ +//! Basic smoke test for `minicore` test auxiliary. +//! +//! This test is duplicated between ui/codegen/assembly because they have different runtest +//! codepaths. + +//@ add-core-stubs +//@ check-pass +//@ compile-flags: --target=x86_64-unknown-linux-gnu +//@ needs-llvm-components: x86 + +#![crate_type = "lib"] +#![feature(no_core)] +#![no_std] +#![no_core] + +extern crate minicore; +use minicore::*; + +struct Meow; +impl Copy for Meow {} |
