-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #9
- Loading branch information
Showing
14 changed files
with
314 additions
and
94 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Here are some example annotations for test expecations | ||
|
||
# this test fails on this platform, with this toolchain pairing | ||
[targets.x86_64-pc-windows-msvc."simple::cc_calls_rustc"] | ||
fail = "check" | ||
|
||
# this test has random results on this platform, whenever rustc is the caller (callee also supported) | ||
[targets.x86_64-pc-windows-msvc."simple::rustc_caller"] | ||
random = true | ||
|
||
# whenever this test involves cc, only link it, and expect linking to fail | ||
[targets.x86_64-pc-windows-msvc."EmptyStruct::cc_toolchain"] | ||
run = "link" | ||
fail = "link" | ||
|
||
# any repr(c) version of this test fails to run | ||
[targets.x86_64-unknown-linux-gnu."simple::repr_c"] | ||
busted = "run" | ||
|
||
# for this pairing, with the rust calling convention, only generate the test, and expect it to work | ||
[targets.x86_64-unknown-linux-gnu."simple::rustc_calls_rustc::conv_rust"] | ||
run = "generate" | ||
pass = "generate" | ||
|
||
# can match all tests with leading :: | ||
[targets.x86_64-unknown-linux-gnu."::rustc_calls_rustc"] | ||
run = "generate" | ||
pass = "generate" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.