crashes: limit a couple tests to only run on x86_64 and/or not on windows

This commit is contained in:
Matthias Krüger 2024-04-14 15:44:17 +02:00
parent 37df49059d
commit 2ce487c45c
6 changed files with 6 additions and 10 deletions

View File

@ -1,4 +1,5 @@
//@ known-bug: #113280
//@ only-x86_64
#![feature(dyn_star, pointer_like_trait)]
#![allow(incomplete_features)]

View File

@ -1,6 +1,8 @@
//@ known-bug: #121444
//@ compile-flags: -Copt-level=0
//@ edition:2021
//@ only-x86_64
//@ ignore-windows
#[repr(align(536870912))]
pub struct A(i64);

View File

@ -1,9 +0,0 @@
//@ known-bug: #123077
use std::arch::x86_64::{__m128, _mm_blend_ps};
pub fn sse41_blend_noinline( ) -> __m128 {
let f = { |x, y| unsafe {
_mm_blend_ps(x, y, { |x, y| unsafe })
}};
f(x, y)
}

View File

@ -1,4 +1,5 @@
//@ known-bug: #123077
//@ only-x86_64
use std::arch::x86_64::{__m128, _mm_blend_ps};
pub fn sse41_blend_noinline( ) -> __m128 {

View File

@ -1,6 +1,6 @@
//@ known-bug: #23707
//@ compile-flags: -Copt-level=0 --edition=2021
//@ only-x86_64
#![recursion_limit="2048"]
use std::marker::PhantomData;

View File

@ -1,5 +1,6 @@
//@ compile-flags: -g -Copt-level=0
//@ known-bug: #34127
//@ only-x86_64
pub fn main() {
let _a = [(); 1 << 63];