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

FIX: Call rustdoc test with the correct cfg flags of a package. #3242

Merged
merged 4 commits into from
Nov 2, 2016
Merged

FIX: Call rustdoc test with the correct cfg flags of a package. #3242

merged 4 commits into from
Nov 2, 2016

Commits on Oct 31, 2016

  1. FIX: Call rustdoc test with the correct cfg flags of a package.

    There was a situation in which if you you had a lib that depends
    on a package with features, whenever you ran the tests for the
    package the `rustdoc test` call was failing because rustdoc
    was called with the root cfg flags, not the package cfg flags.
    
    This fix solves the issue by keeping track of the cfg flags
    per package, so the rustdoc command will be generated with
    the correct cfg flags.
    jhbabon committed Oct 31, 2016
    Configuration menu
    Copy the full SHA
    e100ee9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fd8274a View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2016

  1. Relax conditions in rustdoc test cfg flags tests.

    In Windows the rustdoc test output sets more double quotes, so
    the test doesn't pass. We need to relax the test so it pass in
    *NIX and Windows environments.
    jhbabon committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    3f90298 View commit details
    Browse the repository at this point in the history
  2. Add text language to code bloks in machine-readable-output.md

    Travis fails when running `make doc` because of this file.
    This should fix the issue.
    jhbabon committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    665aa7f View commit details
    Browse the repository at this point in the history