<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/rustdoc-ui/failed-doctest-output.stdout, branch 1.34.2</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.34.2</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.34.2'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2019-01-20T10:14:26+00:00</updated>
<entry>
<title>rustdoc: Don't modify library path for doctests</title>
<updated>2019-01-20T10:14:26+00:00</updated>
<author>
<name>Oliver Middleton</name>
<email>olliemail27@gmail.com</email>
</author>
<published>2019-01-20T10:14:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ad09d7fc794500709242d5b10daa6afd263d1410'/>
<id>urn:sha1:ad09d7fc794500709242d5b10daa6afd263d1410</id>
<content type='text'>
It shouldn't be needed anymore because doctests are no longer compiled with `prefer-dynamic`.
</content>
</entry>
<entry>
<title>Bless test.</title>
<updated>2019-01-17T22:49:29+00:00</updated>
<author>
<name>Wesley Norris</name>
<email>repnop@outlook.com</email>
</author>
<published>2019-01-01T01:03:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f5413cd1e232837775bd8dfc803af4429e8c89c4'/>
<id>urn:sha1:f5413cd1e232837775bd8dfc803af4429e8c89c4</id>
<content type='text'>
Bless test, remove submodule, and fix book entry.

bless test again? maybe it'll work this time...
</content>
</entry>
<entry>
<title>Minor changes to wording and formatting.</title>
<updated>2019-01-17T22:26:24+00:00</updated>
<author>
<name>Wesley Norris</name>
<email>repnop@outlook.com</email>
</author>
<published>2018-12-16T22:31:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=80ee94c1f8640e866840dbcafe76ccdcbfe20fd8'/>
<id>urn:sha1:80ee94c1f8640e866840dbcafe76ccdcbfe20fd8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bless test.</title>
<updated>2019-01-17T22:26:24+00:00</updated>
<author>
<name>Wesley Norris</name>
<email>repnop@outlook.com</email>
</author>
<published>2018-12-08T20:50:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=22e97da30ab0d7cf41ec5adb63285ec887e601c3'/>
<id>urn:sha1:22e97da30ab0d7cf41ec5adb63285ec887e601c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Account for 2 removed lines in src/librustdoc/test.rs</title>
<updated>2019-01-13T09:42:59+00:00</updated>
<author>
<name>Igor Matuszewski</name>
<email>Xanewok@gmail.com</email>
</author>
<published>2019-01-07T08:09:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cc19a78ee846b34fae8b1caa19d84cf33d7ff67e'/>
<id>urn:sha1:cc19a78ee846b34fae8b1caa19d84cf33d7ff67e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make `panictry!` private to libsyntax</title>
<updated>2019-01-02T16:02:30+00:00</updated>
<author>
<name>Andy Russell</name>
<email>arussell123@gmail.com</email>
</author>
<published>2018-12-04T19:10:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0a6fb8473872b2a6dd7fe66697f90dceac667ec4'/>
<id>urn:sha1:0a6fb8473872b2a6dd7fe66697f90dceac667ec4</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Remove licenses</title>
<updated>2018-12-26T04:08:33+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2018-12-25T15:56:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2a663555ddf36f6b041445894a8c175cd1bc718c'/>
<id>urn:sha1:2a663555ddf36f6b041445894a8c175cd1bc718c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update panic message to be clearer about env-vars</title>
<updated>2018-12-13T23:07:04+00:00</updated>
<author>
<name>Daniel Silverstone</name>
<email>dsilvers@digital-scurf.org</email>
</author>
<published>2018-12-12T14:20:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6057147fde962f2369c61f8dbf74dd2b1b2ce239'/>
<id>urn:sha1:6057147fde962f2369c61f8dbf74dd2b1b2ce239</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Fixed line numbers in stderr file.</title>
<updated>2018-12-07T23:53:34+00:00</updated>
<author>
<name>Alexander Regueiro</name>
<email>alexreg@me.com</email>
</author>
<published>2018-12-07T20:46:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e14ff9bac651a175506728d2f21f7be0d37f4187'/>
<id>urn:sha1:e14ff9bac651a175506728d2f21f7be0d37f4187</id>
<content type='text'>
</content>
</entry>
<entry>
<title>adds DocTest filename variant, refactors doctest_offset out of source_map, fixes remaining test failures</title>
<updated>2018-12-05T00:52:42+00:00</updated>
<author>
<name>Matthew Russo</name>
<email>matthew@edapp.com</email>
</author>
<published>2018-12-04T20:18:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f0f8aa9e05726bfbc065fa2504daf3232f29bc03'/>
<id>urn:sha1:f0f8aa9e05726bfbc065fa2504daf3232f29bc03</id>
<content type='text'>
</content>
</entry>
</feed>
