about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/failed-doctest-output.stdout
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-39/+0
2022-04-11Fix line numbersMichael Howell-7/+7
2022-04-07Fix test caseMichael Howell-1/+1
2020-11-27libtest: Print the total time taken to execute a test suiteJakob Schikowski-8/+8
2020-01-12Update `output-default.json` and rustdoc testvarkor-1/+1
2019-10-11rustdoc: forward -Z options to rustcTomasz Miąsko-4/+4
Currently rustdoc does not forward `-Z` options to rustc when building test executables. This makes impossible to use rustdoc to run test samples when crate under test is instrumented with one of sanitizers `-Zsanitizer=...`, since the final linking step will not include sanitizer runtime library. Forward `-Z` options to rustc to solve the issue. Helps with #43031.
2019-08-24Improve Rustdoc's handling of procedural macrosAaron Hill-7/+7
Fixes #58700 Fixes #58696 Fixes #49553 Fixes #52210 This commit removes the special rustdoc handling for proc macros, as we can now retrieve their span and attributes just like any other item. A new command-line option is added to rustdoc: `--crate-type`. This takes the same options as rustc's `--crate-type` option. However, all values other than `proc-macro` are treated the same. This allows Rustdoc to enable 'proc macro mode' when handling a proc macro crate. In compiletest, a new 'rustdoc-flags' option is added. This allows us to pass in the '--proc-macro-crate' flag in the absence of Cargo. I've opened [an additional PR to Cargo](https://github.com/rust-lang/cargo/pull/7159) to support passing in this flag. These two PRS can be merged in any order - the Cargo changes will not take effect until the 'cargo' submodule is updated in this repository.
2019-06-05Reblessed tests.Alexander Regueiro-1/+1
2019-05-22do not print panic message on doctest failuresAndy Russell-14/+18
2019-05-21Move `edition` outside the hygiene lock and avoid accessing itJohn Kåre Alsaker-2/+2
2019-04-24report fatal errors during doctest parsingAndy Russell-2/+2
2019-03-10Make the rustc driver and interface demand drivenJohn Kåre Alsaker-2/+5
2019-02-28Introduce rustc_interface and move some methods thereJohn Kåre Alsaker-2/+2
2019-01-20rustdoc: Don't modify library path for doctestsOliver Middleton-2/+2
It shouldn't be needed anymore because doctests are no longer compiled with `prefer-dynamic`.
2019-01-17Bless test.Wesley Norris-2/+2
Bless test, remove submodule, and fix book entry. bless test again? maybe it'll work this time...
2019-01-17Minor changes to wording and formatting.Wesley Norris-3/+2
2019-01-17Bless test.Wesley Norris-2/+3
2019-01-13Account for 2 removed lines in src/librustdoc/test.rsIgor Matuszewski-2/+2
2019-01-02make `panictry!` private to libsyntaxAndy Russell-2/+2
This commit completely removes usage of the `panictry!` macro from outside libsyntax. The macro causes parse errors to be fatal, so using it in libsyntax_ext caused parse failures *within* a syntax extension to be fatal, which is probably not intended. Furthermore, this commit adds spans to diagnostics emitted by empty extensions if they were missing, à la #56491.
2018-12-25Remove licensesMark Rousskov-10/+10
2018-12-13Update panic message to be clearer about env-varsDaniel Silverstone-2/+2
Esteban Kuber requested that the panic message make it clear that `RUST_BACKTRACE=1` is an environment variable. This change makes that clear. Wording provided in part by David Tolnay.
2018-12-07Fixed line numbers in stderr file.Alexander Regueiro-2/+2
2018-12-04adds DocTest filename variant, refactors doctest_offset out of source_map, ↵Matthew Russo-2/+2
fixes remaining test failures
2018-11-22Move Cargo.{toml,lock} to the repository root directory.Eduard-Mihai Burtescu-2/+2
2018-11-02update rustdoc-ui/failed-doctest-output testQuietMisdreavus-2/+2
2018-10-23Set RUST_BACKTRACE=0 for rustdoc-ui/failed-doctest-output.rsJosh Stone-9/+9
This UI test is sensitive to backtrace output, so it should make sure that backtraces are not enabled by the environment.
2018-10-09Update a rustdoc ui test whose output has changedAlex Crichton-2/+2
2018-07-31Fixup test caseMark Rousskov-2/+2
2018-07-20add failure-status to rustdoc doctest ui testQuietMisdreavus-9/+9
2018-07-20normalize test output so it can be run from repo rootQuietMisdreavus-9/+9
2018-07-20update stdout file with test path normalizationQuietMisdreavus-10/+10
2018-07-20report doctest compile failures correctlyQuietMisdreavus-3/+14
2018-07-20add ui test for failing doctestQuietMisdreavus-0/+21