Terry Sun
03dc48488e
Update E0116 to new error code format.
...
Fixes #35249 as part of #35233 .
2016-08-07 11:56:52 -04:00
Novotnik, Petr
98c6770a23
Fix formatting of module layout example
2016-08-07 17:44:47 +02:00
Fran Guijarro
da86ae2338
Update E0101 and E0102 to new format
2016-08-07 12:03:29 -03:00
Jonathan Turner
c350ec7bb3
Fix old call in lexer tests
2016-08-07 07:50:27 -07:00
Jonathan Turner
fad4f32c31
Turn on new errors, json mode. Remove duplicate unicode test
2016-08-07 07:46:49 -07:00
Peter C. Norton
ec1ef79ad9
Updated the messages for E0017
...
- Fix note message, fix tests.
2016-08-07 10:29:50 -04:00
Peter C. Norton
dfb66c3e2b
Update E0010 to use the new format
...
For https://github.com/rust-lang/rust/issues/35194
2016-08-07 10:27:42 -04:00
Yossi Konstantinovsky
64873965fa
Update E0185 and E0186 to new format
2016-08-07 17:23:17 +03:00
Yojan Shrestha
b564c6a5e4
Updates compiler error E0040 with new format
2016-08-07 08:31:17 -05:00
Yojan Shrestha
ed72c65f72
Updates compiler error E0046 with new format
2016-08-07 08:24:36 -05:00
Corey Farwell
28218bed8f
Utilize PhantomData
to enforce !Sync
and !Send
field.
2016-08-07 09:06:19 -04:00
bors
f5e7a5910d
Auto merge of #35362 - medzin:E0252, r=GuillaumeGomez
...
Updated error message E0252
Fixes #35306 as part of #35233 .
r? @GuillaumeGomez
2016-08-07 05:48:47 -07:00
Guillaume Gomez
56eba5a446
Add run-pass test for issue 33498
2016-08-07 13:55:08 +02:00
Felix Rath
e9950618ea
save an Instant for the timeout instead of a Duration
...
requires less bookkeeping. also move some functionality into functions,
to keep the loop cleaner.
2016-08-07 13:40:04 +02:00
bors
42903d9a8f
Auto merge of #35432 - frewsxcv:20847, r=alexcrichton
...
Add regression test for #20847 .
https://github.com/rust-lang/rust/issues/20847
2016-08-07 01:31:43 -07:00
Panashe M. Fundira
54e1e98eab
Update E0204 to the new error format
2016-08-07 03:53:32 -04:00
Jupp Müller
6ca90942e7
Add --test-threads option to test binaries
...
This change allows parallelism of test runs to be specified by a
command line flag names --test-threads in addition to the existing
environment variable RUST_TEST_THREADS. Fixes #25636 .
2016-08-07 09:41:13 +02:00
Antti Keränen
e91f3f6d12
Update error E0118 to new format
...
Fixes #35251
Also changes the span of the error to the span of the type
as suggested in the bonus section of #35251
2016-08-07 10:40:38 +03:00
Antti Keränen
ac10b5f127
Update error E0117 to new format
...
Fixes #35250
2016-08-07 10:38:29 +03:00
Georg Brandl
59af2ac098
typeck: suggest (x.field)(...) to call struct fields even when x is a reference
...
Fixes : #33784
2016-08-07 09:36:48 +02:00
ubsan
7c1bb9ae0d
Finish fixing the operator precedence tables
...
Add the unstable `:` colon and `<-` inplace operators.
2016-08-06 23:57:18 -07:00
Jeffrey Seyfried
cdbfe9fce3
Add test for metavariable hygiene.
2016-08-07 06:54:56 +00:00
Jeffrey Seyfried
8f73fc83dd
Add regression test.
2016-08-07 06:13:35 +00:00
Jeffrey Seyfried
f9f99c5a9c
Make metavariables hygienic.
2016-08-07 06:01:01 +00:00
Srinivas Reddy Thatiparthy
abe1cc79d4
run rustfmt on compiletest folder in src/tools/ folder
2016-08-07 10:21:17 +05:30
Peter C. Norton
2c563c69f4
Update E0023 to the new format
...
Added some extra code to check for the appropriate ending for numbers ==
1 vs. not 1 in error messages.
Added an extra test so that the plural suffix is seen and exercised.
2016-08-07 00:26:31 -04:00
bors
877dfeb572
Auto merge of #35378 - Amanieu:rwlock_eagain, r=alexcrichton
...
Handle RwLock reader count overflow
`pthread_rwlock_rdlock` may return `EAGAIN` if the maximum reader count overflows. We shouldn't return a successful lock in that case.
2016-08-06 19:50:48 -07:00
Vincent Prouillet
02f3609a01
Update error message for E0243 and E0244
2016-08-07 01:31:09 +01:00
Jakub Hlusička
5e06da29a7
E0131 updated to new format
2016-08-07 00:09:54 +02:00
Corey Farwell
0a6b862ccd
Add doc example for std::ffi::NulError::into_vec
.
2016-08-06 17:50:37 -04:00
Panashe M. Fundira
b79e15d32c
Update E0191 to the new error format
2016-08-06 16:35:57 -04:00
Michael Neumann
e8da9159fb
Fix build on DragonFly (unused function errno_location)
...
Function errno_location() is not used on DragonFly. As warnings are
errors, this breaks the build.
2016-08-06 22:01:51 +02:00
Corey Farwell
7fd7af9199
Add regression test for #20847 .
2016-08-06 16:01:12 -04:00
Guillaume Gomez
574fbbf92c
Add E0388 error explanation
2016-08-06 21:45:27 +02:00
Guillaume Gomez
9d8d47d894
Improve librustc_typeck compile_fail check
2016-08-06 21:45:27 +02:00
Guillaume Gomez
f1c2480d47
Add E0312 error explanation
2016-08-06 21:45:24 +02:00
Adam Medziński
19e45799a5
Updated error message E0282
2016-08-06 21:35:02 +02:00
bors
ddf92ffae4
Auto merge of #35393 - GuillaumeGomez:err_codes2, r=jonathandturner
...
Err codes
r? @jonathandturner
2016-08-06 12:29:28 -07:00
Corey Farwell
95cce86fa9
Indicate tracking issue for exact_size_is_empty
unstability.
2016-08-06 15:16:32 -04:00
Doug Goldstein
5f606f0302
arm-unknown-linux-musleabi updates for ARMv6
...
The arm-unknown-linux-musleabi target used in meta-rust for Yocto didn't
explicitly set the arch to ARMv6 and soft float but was instead done via
target spec files and never had the compiler running on the target.
2016-08-06 13:45:28 -05:00
Steven Walter
f010393447
Add config for musl-based arm builds
2016-08-06 13:26:49 -05:00
Oliver Forral
6eba89e194
Fixing compiler error E0121
2016-08-06 07:51:53 -07:00
Guillaume Gomez
4e2dd8d24a
Add new error code tests
2016-08-06 16:31:20 +02:00
Federico Ravasio
eb469d60b6
Updated E0225 to new format.
2016-08-06 15:36:35 +02:00
bors
444ff9fbfb
Auto merge of #35407 - eddyb:rollup, r=eddyb
...
Rollup of 21 pull requests
- Successful merges: #33951 , #34916 , #35287 , #35288 , #35351 , #35353 , #35356 , #35362 , #35363 , #35364 , #35366 , #35368 , #35370 , #35372 , #35373 , #35374 , #35375 , #35376 , #35380 , #35393 , #35394
- Failed merges: #35331 , #35395
2016-08-06 05:02:16 -07:00
Eduard-Mihai Burtescu
67f082287d
Rollup merge of #35380 - TheZoq2:master, r=jonathandturner
...
Update E0004 to use labels
Fixes #35191 and is part of #35233
"r? @jonathandturner
2016-08-06 15:01:23 +03:00
Eduard-Mihai Burtescu
56cadb6a98
Rollup merge of #35376 - trixnz:update-error-373, r=jonathandturner
...
Update error format for E0373
Fixes #35337 as part of #35233
r? @jonathandturner
2016-08-06 15:01:23 +03:00
Eduard-Mihai Burtescu
77c342e03c
Rollup merge of #35374 - mrabault:e0229_format, r=jonathandturner
...
Update E0229 to new format
Hello,
This fixes #35305 . I ran the tests, no unit test broke, even though some were ignored.
Cheers
r? @jonathandturner
2016-08-06 15:01:22 +03:00
Eduard-Mihai Burtescu
b053da3a68
Rollup merge of #35373 - oijazsh:E0107, r=jonathandturner
...
Update E0107 message to new format
Fixes #35246 as part of #35233 .
r? @jonathandturner
2016-08-06 15:01:22 +03:00
Eduard-Mihai Burtescu
aba49ac981
Rollup merge of #35372 - Keats:err-323, r=jonathandturner
...
Update error message for E0323, E0324 and E0325
Fixes #35325 , #35327 and #35329 as part of #35233
r? @jonathandturner
2016-08-06 15:01:22 +03:00