You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test tests/ui/consts/const-eval/parse_ints.rs in the file failing-ui-tests.txt even though this is not something to fix on our end.
The reason it is not removed is because the test file doesn't contain any error pattern like //@ error-pattern: and we only remove tests containing those patterns.
According to the documentation, a UI test is expected to generate a compile error by default, so perhaps we should only keep the tests with one of the pass headers:
//@ check-pass
//@ build-pass
//@ run-pass
The text was updated successfully, but these errors were encountered:
hi! i want to start partcipating in rustc_codegen_gcc, for this task does this mean i need to go through every file in the failing-ui-tests.txt and only include the files that have //@ check-pass , //@ build-pass or //@ run-pass ?
The test
tests/ui/consts/const-eval/parse_ints.rs
in the filefailing-ui-tests.txt
even though this is not something to fix on our end.The reason it is not removed is because the test file doesn't contain any error pattern like
//@ error-pattern:
and we only remove tests containing those patterns.According to the documentation, a UI test is expected to generate a compile error by default, so perhaps we should only keep the tests with one of the pass headers:
//@ check-pass
//@ build-pass
//@ run-pass
The text was updated successfully, but these errors were encountered: