Tamir Duberstein
f548a05542
Unignore some tests in stage1
...
We don't have any pending snapshot-requiring changes. Tests which
continue to be ignored are those that are broken by codegen changes.
2015-05-13 19:58:49 -04:00
Tobias Bucher
7f64fe4e27
Remove all i suffixes
2015-01-30 04:38:54 +01:00
Keegan McAllister
60be2f52d2
Replace #[phase] with #[plugin] / #[macro_use] / #[no_link]
2015-01-05 18:21:13 -08:00
Niko Matsakis
9e3d0b002a
librustc: Remove the fallback to int from typechecking.
...
This breaks a fair amount of code. The typical patterns are:
* `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`;
* `println!("{}", 3)`: change to `println!("{}", 3i)`;
* `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`.
RFC #30 . Closes #6023 .
[breaking-change]
2014-06-24 17:18:48 -07:00
Keegan McAllister
ed41b71fbe
Use phase(plugin) in tests
2014-06-09 14:29:30 -07:00
Brian Anderson
072a920503
Remove check-fast. Closes #4193 , #8844 , #6330 , #7416
2014-04-06 15:55:43 -07:00
Timothée Ravier
73b0186290
Fix inner attribute syntax from #[foo]; to #![foo]
...
From the 0.10 changelog:
* The inner attribute syntax has changed from `#[foo];` to `#![foo]`.
2014-04-04 13:22:57 -07:00
Alex Crichton
a41b0c2529
extern mod => extern crate
...
This was previously implemented, and it just needed a snapshot to go through
2014-02-14 22:55:21 -08:00
Florian Hahn
f62460c1f5
Change xfail directives in compiletests to ignore, closes #11363
2014-02-11 18:23:20 +01:00
Steven Fackler
d049c27f5b
Scan the entire crate for exported macros
...
It previously missed anything in an inner module.
2014-01-20 09:22:46 -08:00