Return tests that have platform dependant output

This commit is contained in:
Esteban Küber 2018-07-16 14:11:37 -07:00 committed by Esteban Küber
parent f760960088
commit 82fd8d74cd
8 changed files with 0 additions and 59 deletions

View File

@ -1,6 +0,0 @@
error: linker `llllll` not found
|
= note: No such file or directory (os error 2)
error: aborting due to previous error

View File

@ -1,21 +0,0 @@
error[E0191]: the value of the associated type `ChildKey` (from the trait `Hierarchy`) must be specified
--> $DIR/issue-23595-1.rs:18:50
|
LL | type Children = Index<Self::ChildKey, Output=Hierarchy>;
| ^^^^^^^^^ missing associated type `ChildKey` value
error[E0191]: the value of the associated type `Children` (from the trait `Hierarchy`) must be specified
--> $DIR/issue-23595-1.rs:18:50
|
LL | type Children = Index<Self::ChildKey, Output=Hierarchy>;
| ^^^^^^^^^ missing associated type `Children` value
error[E0191]: the value of the associated type `Value` (from the trait `Hierarchy`) must be specified
--> $DIR/issue-23595-1.rs:18:50
|
LL | type Children = Index<Self::ChildKey, Output=Hierarchy>;
| ^^^^^^^^^ missing associated type `Value` value
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0191`.

View File

@ -1,9 +0,0 @@
error[E0391]: cycle detected when computing layout of `std::option::Option<S>`
|
note: ...which requires computing layout of `S`...
= note: ...which again requires computing layout of `std::option::Option<S>`, completing the cycle
note: cycle used when compile_codegen_unit
error: aborting due to previous error
For more information about this error, try `rustc --explain E0391`.

View File

@ -1,23 +0,0 @@
error[E0277]: `std::cell::UnsafeCell<std::option::Option<()>>` cannot be shared between threads safely
--> $DIR/issue-43733-2.rs:35:1
|
LL | static __KEY: Key<()> = Key::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `std::cell::UnsafeCell<std::option::Option<()>>` cannot be shared between threads safely
|
= help: within `std::thread::Key<()>`, the trait `std::marker::Sync` is not implemented for `std::cell::UnsafeCell<std::option::Option<()>>`
= note: required because it appears within the type `std::thread::Key<()>`
= note: shared static variables must have a type that implements `Sync`
error[E0277]: `std::cell::Cell<bool>` cannot be shared between threads safely
--> $DIR/issue-43733-2.rs:35:1
|
LL | static __KEY: Key<()> = Key::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `std::cell::Cell<bool>` cannot be shared between threads safely
|
= help: within `std::thread::Key<()>`, the trait `std::marker::Sync` is not implemented for `std::cell::Cell<bool>`
= note: required because it appears within the type `std::thread::Key<()>`
= note: shared static variables must have a type that implements `Sync`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0277`.