Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move compile-fail tests to ui #53196

Merged
merged 20 commits into from
Aug 14, 2018
Merged

Commits on Aug 14, 2018

  1. Check error-patterns on UI tests. Fixes rust-lang#52531.

    Previously, even if no expected errors were supplied, if a test execution failed
    then supplied error patterns would not be checked. This commit modifies the
    conditional that determines whether error patterns or expected errors are checked
    to remedy this.
    
    Further, this commit modifies the error pattern checking logic so that each pattern
    is checked against all lines of the string. This is required for UI tests as the
    stderr is in JSON format - all on one line - so in the previous implementation when the
    first pattern was found on the first line (which was actually the entire error) then
    no other patterns would be found on subsequent lines (as there weren't any).
    davidtwco committed Aug 14, 2018
    Configuration menu
    Copy the full SHA
    fe28bcf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b16a306 View commit details
    Browse the repository at this point in the history
  3. Updated new UI tests to pass with NLL compare-mode

    These tests need a review to ensure that those marked as
    ignore-compare-mode-nll should be ignored and that this isn't a bug in NLL.
    davidtwco committed Aug 14, 2018
    Configuration menu
    Copy the full SHA
    3e0a407 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3fc7ab2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ed79c31 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2ad663c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    dc5a657 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8e7b9b8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    003b5a8 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7c13eb4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    a922642 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    0cfc173 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    cd12c82 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    768998a View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b8b7a3c View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    f7f7c1e View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    4b24645 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    67ec37b View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    d775e61 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    7b02656 View commit details
    Browse the repository at this point in the history