12 lines
394 B
Text
12 lines
394 B
Text
Index: tests/ui/sse2.rs
|
|
--- tests/ui/sse2.rs.orig
|
|
+++ tests/ui/sse2.rs
|
|
@@ -9,7 +9,7 @@ fn main() {
|
|
match env::var("TARGET") {
|
|
Ok(s) => {
|
|
// Skip this tests on i586-unknown-linux-gnu where sse2 is disabled
|
|
- if s.contains("i586") {
|
|
+ if s.contains("i586") || s.contains("i686-unknown-openbsd") {
|
|
return
|
|
}
|
|
}
|