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

Store test output by ID #125

Merged

Commits on Jun 6, 2020

  1. Test for repeated output

    dnephin committed Jun 6, 2020
    Configuration menu
    Copy the full SHA
    02c7a08 View commit details
    Browse the repository at this point in the history
  2. Use an ID to index TestCase output

    So that when a test case is encountered multiple times, either because
    -count=n was used, or because ScanTestOutput is being passed multiple instances
    of test runs, a failure or skipped test displays only its own output,
    not that of all tests with the same name.
    
    Also move addEvent to Package, it is more appropriate as a Package
    method, and make Package methods use a pointer receiver. Many of them
    update the Package.
    dnephin committed Jun 6, 2020
    Configuration menu
    Copy the full SHA
    c6c06f8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dff8591 View commit details
    Browse the repository at this point in the history
  4. Remove hasSubTestSkipped

    It can be determined by using the list of skipped test cases.
    dnephin committed Jun 6, 2020
    Configuration menu
    Copy the full SHA
    9252745 View commit details
    Browse the repository at this point in the history