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

[googletest] Output skip message #2517

Merged
merged 1 commit into from
Oct 22, 2019
Merged

Commits on Oct 17, 2019

  1. [googletest] Output skip message

    Closes google#2208
    
    Previously, skip messages were invisible, so debugging skips was hard.
    
    Now we have this:
    
    ```
    $ ./googletest/gtest_skip_test
    Running main() from /home/lesha/github/snarkmaster/googletest/googletest/src/gtest_main.cc
    [==========] Running 3 tests from 2 test suites.
    [----------] Global test environment set-up.
    [----------] 1 test from SkipTest
    [ RUN      ] SkipTest.DoesSkip
    /home/lesha/github/snarkmaster/googletest/googletest/test/gtest_skip_test.cc:38: Skipped
    skipping single test
    [  SKIPPED ] SkipTest.DoesSkip (0 ms)
    [----------] 1 test from SkipTest (1 ms total)
    ...
    ```
    snarkmaster committed Oct 17, 2019
    Configuration menu
    Copy the full SHA
    cbf019d View commit details
    Browse the repository at this point in the history