rust/src/test/run-pass
bors aa38867e4e auto merge of #6071 : bjz/rust/numeric-traits, r=graydon
As part of the numeric trait reform (see issue #4819), I have added the following traits to `core::num` and implemented them for Rust's primitive numeric types:

~~~rust
pub trait Bitwise: Not<Self>
                 + BitAnd<Self,Self>
                 + BitOr<Self,Self>
                 + BitXor<Self,Self>
                 + Shl<Self,Self>
                 + Shr<Self,Self> {}

pub trait BitCount {
    fn population_count(&self) -> Self;
    fn leading_zeros(&self) -> Self;
    fn trailing_zeros(&self) -> Self;
}

pub trait Bounded {
    fn min_value() -> Self;
    fn max_value() -> Self;
}

pub trait Primitive: Num
                   + NumCast
                   + Bounded
                   + Neg<Self>
                   + Add<Self,Self>
                   + Sub<Self,Self>
                   + Mul<Self,Self>
                   + Quot<Self,Self>
                   + Rem<Self,Self> {
    fn bits() -> uint;
    fn bytes() -> uint;
}

pub trait Int: Integer
             + Primitive
             + Bitwise
             + BitCount {}

pub trait Float: Real
               + Signed
               + Primitive {
    fn NaN() -> Self;
    fn infinity() -> Self;
    fn neg_infinity() -> Self;
    fn neg_zero() -> Self;

    fn is_NaN(&self) -> bool;
    fn is_infinite(&self) -> bool;
    fn is_finite(&self) -> bool;

    fn mantissa_digits() -> uint;
    fn digits() -> uint;
    fn epsilon() -> Self;
    fn min_exp() -> int;
    fn max_exp() -> int;
    fn min_10_exp() -> int;
    fn max_10_exp() -> int;

    fn mul_add(&self, a: Self, b: Self) -> Self;
    fn next_after(&self, other: Self) -> Self;
}
~~~
Note: I'm not sure my implementation for `BitCount::trailing_zeros` and `BitCount::leading_zeros` is correct for uints. I also need some assistance creating appropriate unit tests for them.

More work needs to be done in implementing specialized primitive floating-point and integer methods, but I'm beginning to reach the limits of my knowledge. Please leave your suggestions/critiques/ideas on #4819 if you have them – I'd very much appreciate hearing them.

I have also added an `Orderable` trait:

~~~rust
pub trait Orderable: Ord {
    fn min(&self, other: &Self) -> Self;
    fn max(&self, other: &Self) -> Self;
    fn clamp(&self, mn: &Self, mx: &Self) -> Self;
}
~~~

This is a temporary trait until we have default methods. We don't want to encumber all implementors of Ord by requiring them to implement these functions, but at the same time we want to be able to take advantage of the speed of the specific numeric functions (like the `fmin` and `fmax` intrinsics).
2013-04-27 13:09:35 -07:00
..
foreign-mod-src check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
foreign-src check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
mod_dir_simple Relate the module hierarchy to directory paths in the parser 2012-12-11 15:00:23 -08:00
module-polymorphism3-files/float-template librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
syntax-extension-source-utils-files librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alias-uninit-value.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alignment-gep-tup-like-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alignment-gep-tup-like-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alloca-from-derived-tydesc.rs test: De-mut the test suite. rs=demuting 2013-02-22 18:35:01 -08:00
alt-borrowed_str.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alt-bot-2.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
alt-bot.rs Remove uses of log 2013-03-11 23:19:42 -07:00
alt-implicit-copy-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-join.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alt-naked-record-expr.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alt-naked-record.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alt-path.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alt-pattern-drop.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-pattern-lit.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-pattern-no-type-params.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alt-pattern-simple.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alt-phi.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
alt-range.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
alt-ref-binding-in-guard-3256.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-ref-binding-mut-option.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-ref-binding-mut.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-ref-binding.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-str.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-tag.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-type-simple.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
alt-unique-bind.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
alt-value-binding-in-guard-3291.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
alt-with-ret-arm.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
anon-extern-mod-cross-crate-2.rs rt: remove last_os_error and adjust tests. 2013-02-11 23:49:49 -05:00
anon-extern-mod.rs rt: remove last_os_error and adjust tests. 2013-02-11 23:49:49 -05:00
anon-trait-static-method.rs librustc: Remove all uses of static from functions. rs=destatic 2013-03-22 10:27:39 -07:00
anon_trait_static_method_exe.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
argument-passing.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
arith-0.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
arith-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
arith-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
arith-unsigned.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
artificial-block.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
assert-eq-macro-success.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
assign-assign.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
assignability-trait.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
attr-before-view-item.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
attr-before-view-item2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
attr-main-2.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
attr-main.rs xfail-fast the #[main] tests, r=burningtree 2013-01-18 17:44:26 -08:00
attr-start.rs Added xfail-fast to test so the windows buildbot doesn't choke 2013-04-12 20:59:46 +12:00
auto-encode.rs librustc: Implement fast-ffi and use it in various places 2013-04-19 11:53:31 -07:00
auto-instantiate.rs Remove uses of log 2013-03-11 23:19:42 -07:00
auto-loop.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
auto-ref-bounded-ty-param.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
auto-ref-newtype.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
auto-ref-slice-plus-ref.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
auto-ref-sliceable.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
auto-ref.rs test: Some test fixes 2013-03-13 20:07:11 -07:00
autobind.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
autoderef-and-borrow-method-receiver.rs librustc: Mark all type implementations public. rs=impl-publicity 2013-02-28 11:32:24 -08:00
autoderef-method-newtype.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
autoderef-method-on-trait.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
autoderef-method-priority.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
autoderef-method-twice-but-not-thrice.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
autoderef-method-twice.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
autoderef-method.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
autoref-intermediate-types-issue-3585.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
bare-static-string.rs librustc: Convert all uses of old lifetime notation to new lifetime notation. rs=delifetiming 2013-03-18 17:21:14 -07:00
big-literals.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
binary-minus-without-space.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
bind-by-move.rs Fix xfail'd ARC test 2013-04-14 11:35:58 -04:00
binops.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
bitv-perf-test.rs Modernize bitv mut fields and explicit self 2013-02-17 23:09:20 -05:00
bitwise.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
block-arg-call-as.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-arg-can-be-followed-by-binop.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-arg-can-be-followed-by-block-arg.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-arg-can-be-followed-by-call.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-arg-in-parentheses.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-arg-used-as-any.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-arg-used-as-lambda.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-arg.rs Implement Signed and Unsigned traits and remove related predicate functions 2013-04-24 12:46:26 +10:00
block-explicit-types.rs Remove uses of log 2013-03-11 23:19:42 -07:00
block-expr-precedence.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-fn-coerce.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-iter-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-iter-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
block-vec-map_zip.rs Rename vec::mod2 to vec::mod_zip 2013-04-25 01:38:44 -04:00
bool-not.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrow-by-val-method-receiver.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
borrowck-binding-mutbl.rs test: De-mut the test suite. rs=demuting 2013-02-22 18:35:01 -08:00
borrowck-borrow-from-at-vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-borrow-from-expr-block.rs clone: managed boxes need to clone by shallow copy 2013-04-08 16:19:12 -04:00
borrowck-fixed-length-vecs.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-lend-args.rs Remove ++ mode from the compiler (it is parsed as + mode) 2013-03-13 17:00:09 -04:00
borrowck-move-from-unsafe-ptr-ok.rs tests/tutorials: Get rid of move. 2013-02-15 02:49:55 -08:00
borrowck-mut-uniq.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
borrowck-mut-vec-as-imm-slice.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-newtype-issue-2573.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
borrowck-pat-reassign-no-binding.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
borrowck-preserve-box-in-arm-not-taken.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
borrowck-preserve-box-in-discr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-preserve-box-in-field.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-preserve-box-in-pat.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-preserve-box-in-uniq.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-preserve-box-sometimes-needed.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
borrowck-preserve-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-preserve-cond-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-preserve-expl-deref.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-root-while-cond-2.rs test: De-mut the test suite. rs=demuting 2013-02-22 18:35:01 -08:00
borrowck-root-while-cond.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
borrowck-univariant-enum.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowck-wg-borrow-mut-to-imm-2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
borrowck-wg-borrow-mut-to-imm-3.rs librustc: Convert all uses of old lifetime notation to new lifetime notation. rs=delifetiming 2013-03-18 17:21:14 -07:00
borrowck-wg-borrow-mut-to-imm.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
borrowck-wg-simple.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
borrowed-ptr-pattern-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowed-ptr-pattern-3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowed-ptr-pattern-infallible.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowed-ptr-pattern-option.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrowed-ptr-pattern.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
box-compare.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
box-in-tup.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
box-inside-if.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
box-inside-if2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
box-pattern.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
box-unbox.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
boxed-class-type-substitution.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
boxed-trait-with-vstore.rs test: Some test fixes 2013-03-13 20:07:11 -07:00
break-value.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
break.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
c-stack-as-value.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
c-stack-returning-int64.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
call-closure-from-overloaded-op.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cap-clause-move.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
capture_nil.rs core: Extract comm from pipes. #4742 2013-02-21 17:36:54 -08:00
cast-mutable-trait.rs Allow casting to mutable trait objects. 2013-04-17 00:34:25 +02:00
cast-region-to-uint.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
cast.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cci_borrow.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cci_capture_clause.rs test: Remove export from the tests, language, and libraries. rs=deexporting 2013-01-30 15:56:40 -08:00
cci_impl_exe.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cci_iter_exe.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cci_nested_exe.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cci_no_inline_exe.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cfg-family.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
cfg-target-family.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
cfgs-on-items.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
char.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
child-outlives-parent.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
class-attributes-1.rs libsyntax: Pretty print using the new impl syntax. r=brson 2013-02-13 15:23:48 -08:00
class-attributes-2.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
class-cast-to-trait-cross-crate-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-cast-to-trait-cross-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-cast-to-trait-multiple-types.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-cast-to-trait.rs Remove legacy object creation mode, and convert remaining uses of it 2013-02-28 20:28:04 -05:00
class-dtor.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
class-exports.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-impl-parameterized-trait.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-impl-very-parameterized-trait.rs tests: changes in response to #5656 2013-04-10 17:32:03 -07:00
class-implement-trait-cross-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-implement-traits.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-implements-multiple-traits.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-method-cross-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-methods-cross-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-methods.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-poly-methods-cross-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-poly-methods.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-separate-impl.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-str-field.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
class-trait-bounded-param.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
class-typarams.rs librustc: Mark all type implementations public. rs=impl-publicity 2013-02-28 11:32:24 -08:00
classes-cross-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
classes-self-referential.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
classes-simple-cross-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
classes-simple-method.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
classes-simple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
classes.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cleanup-copy-mode.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
clone-with-exterior.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
close-over-big-then-small-data.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
closure-inference.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
closure-inference2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
coerce-reborrow-imm-ptr-arg.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
coerce-reborrow-imm-ptr-rcvr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
coerce-reborrow-imm-vec-arg.rs libcore: Change [const T] to const [T] everywhere 2013-03-26 21:29:33 -07:00
coerce-reborrow-imm-vec-rcvr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
coerce-reborrow-mut-ptr-arg.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
coerce-reborrow-mut-ptr-rcvr.rs librustc: Mark all type implementations public. rs=impl-publicity 2013-02-28 11:32:24 -08:00
coerce-reborrow-mut-vec-arg.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
coerce-reborrow-mut-vec-rcvr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
coherence-impl-in-fn.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
comm.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
compare-generic-enums.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
complex.rs Remove uses of log 2013-03-11 23:19:42 -07:00
conditional-compile-arch.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
conditional-compile.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-autoderef-newtype.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-autoderef.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-big-enum.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-bound.rs librustc: WIP patch for using the return value. 2013-04-19 12:00:08 -07:00
const-cast-ptr-int.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-cast.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-const.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-contents.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-cross-crate-const.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-cross-crate-extern.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-deref.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-byref-self.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
const-enum-byref.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
const-enum-cast.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-ptr.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
const-enum-struct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-struct2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-structlike.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-tuple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-tuple2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-tuplestruct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-tuplestruct2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-vec-index.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-vec-ptr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-vector.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-expr-in-fixed-length-vec.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
const-expr-in-vec-repeat.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
const-extern-function.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-fields-and-indexing.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-fn-val.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-negative.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-nullary-enum.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
const-nullary-univariant-enum.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-rec-and-tup.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-region-ptrs-noncopy.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-region-ptrs.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-str-ptr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-struct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-tuple-struct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-unit-struct.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
const-vec-of-fns.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
const-vec-syntax.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
const-vecs-and-slices.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
consts-in-patterns.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
core-export-f64-sqrt.rs Fixed fmt!, tests, doc-tests. 2013-02-03 15:37:25 -08:00
crate-method-reexport-grrrrrrr.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
crateresolve1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
crateresolve2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
crateresolve3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
crateresolve4.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
crateresolve5.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
crateresolve6.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
crateresolve7.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
cross-crate-const-pat.rs Test for cross-crate const in match pattern. 2013-03-21 00:38:31 -07:00
cycle-collection.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
cycle-collection2.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
cycle-collection4.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
cycle-collection5.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
dead-code-one-arm-if.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
deep-vector.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
deep-vector2.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
deep.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
default-method-simple.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
deref-lval.rs Remove uses of log 2013-03-11 23:19:42 -07:00
deref.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
deriving-clone-enum.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
deriving-clone-generic-enum.rs test: replace uses of old deriving attribute with new one 2013-03-22 06:30:53 -04:00
deriving-clone-generic-struct.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
deriving-clone-generic-tuple-struct.rs test: replace uses of old deriving attribute with new one 2013-03-22 06:30:53 -04:00
deriving-clone-struct.rs test: replace uses of old deriving attribute with new one 2013-03-22 06:30:53 -04:00
deriving-clone-tuple-struct.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
deriving-cmp-generic-enum.rs libsyntax: short-circuit on non-matching variants in deriving code. 2013-04-12 17:12:02 +10:00
deriving-cmp-generic-struct-enum.rs libsyntax: short-circuit on non-matching variants in deriving code. 2013-04-12 17:12:02 +10:00
deriving-cmp-generic-struct.rs libsyntax: short-circuit on non-matching variants in deriving code. 2013-04-12 17:12:02 +10:00
deriving-cmp-generic-tuple-struct.rs libsyntax: short-circuit on non-matching variants in deriving code. 2013-04-12 17:12:02 +10:00
deriving-enum-single-variant.rs test: replace uses of old deriving attribute with new one 2013-03-22 06:30:53 -04:00
deriving-meta-empty-trait-list.rs syntax: implement #[deriving] meta-attribute 2013-03-12 12:52:39 -04:00
deriving-meta-multiple.rs syntax: implement #[deriving] meta-attribute 2013-03-12 12:52:39 -04:00
deriving-meta.rs syntax: implement #[deriving] meta-attribute 2013-03-12 12:52:39 -04:00
deriving-via-extension-c-enum.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
deriving-via-extension-enum.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
deriving-via-extension-iter-bytes-enum.rs test: replace uses of old deriving attribute with new one 2013-03-22 06:30:53 -04:00
deriving-via-extension-iter-bytes-struct.rs test: replace uses of old deriving attribute with new one 2013-03-22 06:30:53 -04:00
deriving-via-extension-struct-empty.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
deriving-via-extension-struct-like-enum-variant.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
deriving-via-extension-struct-tuple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
deriving-via-extension-struct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
deriving-via-extension-type-params.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
die-macro.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
div-mod.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
do-for-empty-args.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
do-for-no-args.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
do-pure.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
do-stack.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
do1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
do2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
do3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
double-unbox.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
drop-on-empty-block-exit.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
drop-on-ret.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
drop-trait-generic.rs librustc: Forbid destructors from being attached to any structs that might contain non-Owned fields. r=nmatsakis 2013-03-21 17:31:34 -07:00
drop-trait.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
dupe-first-attr.rc test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
duplicate-use.rs rename map -> oldmap and mark it as deprecated 2013-02-03 15:55:10 -05:00
early-ret-binop-add.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
early-vtbl-resolution.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
else-if.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
empty-mutable-vec.rs Merge remote-tracking branch 'bstrie/rimov' into incoming 2013-02-04 11:58:30 -08:00
empty-tag.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
enum-alignment.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
enum-discrim-range-overflow.rs Add a test for enum discriminant range overflow. 2013-03-06 20:37:28 -08:00
enum-disr-val-pretty.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
enum-export-inheritance.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
enum-variants.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
estr-shared.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
estr-slice.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
estr-uniq.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
evec-internal-boxes.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
evec-internal.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
evec-slice.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
exec-env.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
explicit-i-suffix.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
explicit-self-closures.rs librustc: Mark all type implementations public. rs=impl-publicity 2013-02-28 11:32:24 -08:00
explicit-self-generic.rs rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
explicit-self-objects-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
explicit-self-objects-simple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
explicit-self-objects-uniq.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
explicit-self.rs tests: changes in response to #5656 2013-04-10 17:32:03 -07:00
explicit_self_xcrate_exe.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
export-abstract-tag.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
export-glob-imports-target.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
export-multi.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
export-non-interference.rs test: Remove export from the tests, language, and libraries. rs=deexporting 2013-01-30 15:56:40 -08:00
export-non-interference2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
export-non-interference3.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
export-tag-variant.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
export-unexported-dep.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-fail-all.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
expr-alt-fail.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-generic-box1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-generic-box2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-generic-unique1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-generic-unique2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-generic.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-struct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-alt.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-fn.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-generic-box1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-generic-box2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-generic-unique1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-generic-unique2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-generic.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-ref.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
expr-block-slot.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-copy.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-elseif-ref.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-elseif-ref2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
expr-empty-ret.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
expr-fn.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if-fail-all.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
expr-if-fail.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if-generic-box1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if-generic-box2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if-generic.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if-struct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-repeat-vstore.rs librustc: Allow expr_repeat to be used with any vstore 2013-03-27 13:53:03 -07:00
expr-scope.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
exterior.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-1.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
extern-call-deep.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-call-deep2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-call-scrub.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-call.rs librustc: WIP patch for using the return value. 2013-04-19 12:00:08 -07:00
extern-crosscrate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-mod-abi.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
extern-mod-ordering-exe.rs librustc: Enforce that extern mod directives come first, then use directives, then items. 2013-03-26 21:30:17 -07:00
extern-mod-syntax.rs test: Remove uses of oldmap::HashMap 2013-03-26 19:21:04 -04:00
extern-pass-char.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-pass-double.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-pass-TwoU8s.rs rustc: Use an out pointer to return structs in x86 C ABI. #5347 2013-04-17 15:49:19 -07:00
extern-pass-TwoU16s.rs rustc: Use an out pointer to return structs in x86 C ABI. #5347 2013-04-17 15:49:19 -07:00
extern-pass-TwoU32s.rs rustc: Fix struct returns on x86 mac for 8-byte structs 2013-04-18 14:14:17 -07:00
extern-pass-TwoU64s-ref.rs rustc: Use an out pointer to return structs in x86 C ABI. #5347 2013-04-17 15:49:19 -07:00
extern-pass-TwoU64s.rs test: Add more comments about why extern-pass-TwoU64s is xfailed 2013-04-18 11:17:01 -07:00
extern-pass-u32.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-pass-u64.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-pub.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
extern-return-TwoU8s.rs test: xfail-macos some tests that don't work on mac i686 2013-04-18 11:17:34 -07:00
extern-return-TwoU16s.rs test: xfail-macos some tests that don't work on mac i686 2013-04-18 11:17:34 -07:00
extern-return-TwoU32s.rs rustc: Fix struct returns on x86 mac for 8-byte structs 2013-04-18 14:14:17 -07:00
extern-return-TwoU64s.rs rustc: Use an out pointer to return structs in x86 C ABI. #5347 2013-04-17 15:49:19 -07:00
extern-stress.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-take-value.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
extern-yield.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fact.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fat-arrow-alt.rs Remove uses of log 2013-03-11 23:19:42 -07:00
fixed-point-bind-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fixed-point-bind-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fixed_length_copy.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fixed_length_vec_glue.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
float-literal-inference.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
float-nan.rs Fix failing test 2013-04-26 17:25:17 +10:00
float-signature.rs Remove uses of log 2013-03-11 23:19:42 -07:00
float.rs Remove uses of log 2013-03-11 23:19:42 -07:00
float2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
floatlits.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fn-assign-managed-to-bare-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fn-assign-managed-to-bare-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fn-bare-assign.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fn-bare-coerce-to-block.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
fn-bare-coerce-to-shared.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
fn-bare-item.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
fn-bare-size.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fn-bare-spawn.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fn-coerce-field.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
fn-lval.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
fn-pattern-expected-type-2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
fn-pattern-expected-type.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fn-type-infer.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
for-destruct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
for-loop-fail.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
foreach-nested.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
foreach-put-structured.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
foreach-simple-outer-slot.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
foreign-call-no-runtime.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
foreign-dupe.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
foreign-fn-linkname.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
foreign-lib-path.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
foreign-mod-unused-const.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
foreign-mod.rc Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
foreign-no-abi.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
foreign-struct.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
foreign.rc Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
foreign2.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
fun-call-variants.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fun-indirect-call.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
functional-struct-update.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-alias-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-alias-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-derived-type.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-drop-glue.rs librustc: Separate most trait bounds with '+'. rs=plussing 2013-02-20 21:14:20 -08:00
generic-exterior-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-exterior-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-fn-box.rs Remove uses of log 2013-03-11 23:19:42 -07:00
generic-fn-infer.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-fn-twice.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-fn-unique.rs Remove uses of log 2013-03-11 23:19:42 -07:00
generic-fn.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-ivec-leak.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-ivec.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-newtype-struct.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-object.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-recursive-tag.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-tag-alt.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-tag-corruption.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-tag-local.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-tag-values.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-tag.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-temporary.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-tup.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-type-synonym.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
generic-type.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
generic-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
getopts_ref.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
global-scope.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
guards-not-exhaustive.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
guards.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
hashmap-memory.rs core::comm: Modernize constructors to use new 2013-04-18 14:07:35 -07:00
hello.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
html-literals.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
i8-incr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
i32-sub.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
if-bot.rs Remove uses of log 2013-03-11 23:19:42 -07:00
if-check.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
if-ret.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
impl-implicit-trait.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
impl-privacy-xc-1.rs pub fn main for run-pass tests that didn't have it 2013-02-17 14:36:43 -08:00
impl-privacy-xc-2.rs pub fn main for run-pass tests that didn't have it 2013-02-17 14:36:43 -08:00
import-from.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
import-glob-0.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
import-glob-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
import-in-block.rs Remove uses of log 2013-03-11 23:19:42 -07:00
import-trailing-comma.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
import.rs Remove uses of log 2013-03-11 23:19:42 -07:00
import2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
import3.rs librustc: Forbid chained imports and fix the logic for one-level renaming imports 2013-03-02 16:49:30 -08:00
import4.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
import5.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
import6.rs librustc: Forbid chained imports and fix the logic for one-level renaming imports 2013-03-02 16:49:30 -08:00
import7.rs librustc: Forbid chained imports and fix the logic for one-level renaming imports 2013-03-02 16:49:30 -08:00
import8.rs Remove uses of log 2013-03-11 23:19:42 -07:00
infer-fn-tail-expr.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
infer-with-expected.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
inferred-suffix-in-pattern-range.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
infinite-loops.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
init-res-into-things.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
inner-module.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
instantiable.rs test: Remove newtype enums from the test suite. rs=deenum 2013-03-11 09:35:58 -07:00
int-conversion-coherence.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
int.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
integer-literal-suffix-inference.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
integral-indexing.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
intrinsic-alignment.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
intrinsic-atomics-cc.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
intrinsic-atomics.rs Add AbiSet and integrate it into the AST. 2013-03-29 18:36:20 -07:00
intrinsic-frame-address.rs Add AbiSet and integrate it into the AST. 2013-03-29 18:36:20 -07:00
intrinsic-move-val.rs Add AbiSet and integrate it into the AST. 2013-03-29 18:36:20 -07:00
intrinsics-integer.rs Add AbiSet and integrate it into the AST. 2013-03-29 18:36:20 -07:00
intrinsics-math.rs Add AbiSet and integrate it into the AST. 2013-03-29 18:36:20 -07:00
invoke-external-foreign.rs rt: remove last_os_error and adjust tests. 2013-02-11 23:49:49 -05:00
irrefutable-unit.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-333.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-868.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
issue-912.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
issue-979.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-980.rs librustc: Implement a lint mode for mutable structures; deny by default. r=tjc 2013-02-26 04:18:11 -08:00
issue-1112.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-1251.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
issue-1257.rs pub fn main for run-pass tests that didn't have it 2013-02-17 14:36:43 -08:00
issue-1458.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-1460.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-1466.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-1516.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
issue-1660.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
issue-1696.rs rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
issue-1701.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-1821.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-1866.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
issue-1895.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
issue-1974.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-1989.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
issue-2101.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2185.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
issue-2190-1.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
issue-2190-2.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
issue-2190.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
issue-2196.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2214.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-2216.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-2284.rs test: Fix tests. rs=tests 2013-03-13 20:08:35 -07:00
issue-2288.rs test: Fix tests. rs=tests 2013-03-13 20:08:35 -07:00
issue-2311-2.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
issue-2311.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
issue-2312.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
issue-2316-c.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-2380-b.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2383.rs modernize std::deque 2013-02-16 18:20:54 -05:00
issue-2414-c.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2428.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-2445-b.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
issue-2445.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
issue-2463.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2472.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2487-a.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
issue-2502.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
issue-2526-a.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2550.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2611.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
issue-2631-b.rs rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
issue-2633-2.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
issue-2633.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
issue-2642.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2708.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-2718.rs Add AbiSet and integrate it into the AST. 2013-03-29 18:36:20 -07:00
issue-2723-b.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2734.rs librustc: Replace the &static bound with 'static 2013-03-21 17:31:35 -07:00
issue-2735-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-2735-3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-2735.rs librustc: Replace the &static bound with 'static 2013-03-21 17:31:35 -07:00
issue-2748-a.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
issue-2748-b.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-2804-2.rs rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
issue-2804.rs rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
issue-2834.rs librustc: Separate most trait bounds with '+'. rs=plussing 2013-02-20 21:14:20 -08:00
issue-2869.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2895.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
issue-2904.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-2930.rs tests/tutorials: Get rid of move. 2013-02-15 02:49:55 -08:00
issue-2935.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
issue-2936.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-2989.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3012-2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3026.rs rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
issue-3037.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3052.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
issue-3091.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3109.rs Remove uses of log 2013-03-11 23:19:42 -07:00
issue-3121.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3149.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
issue-3168.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3176.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3186.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3211.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3220.rs librustc: Mark all type implementations public. rs=impl-publicity 2013-02-28 11:32:24 -08:00
issue-3250.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3389.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
issue-3424.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3447.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
issue-3461.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-3480.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
issue-3500.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3556.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3559 test: Fix a bunch of run-pass tests. rs=bustage 2012-12-28 17:17:05 -08:00
issue-3559.rs rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
issue-3563-2.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
issue-3563-3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3574.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3609.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
issue-3656.rs librustc: Remove all uses of the old [T * N] fixed-length vector syntax 2013-03-26 21:29:34 -07:00
issue-3683.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3702 Test cases, some xfailed 2012-12-06 21:53:14 -08:00
issue-3702.rs Refactor so that references to traits are not represented using a type with a 2013-04-05 05:36:02 -04:00
issue-3753.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
issue-3794.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
issue-3847.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3860.rs tests: changes in response to #5656 2013-04-10 17:32:03 -07:00
issue-3874.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
issue-3878.rs tests/tutorials: Get rid of move. 2013-02-15 02:49:55 -08:00
issue-3888-2.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
issue-3895.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
issue-3904.rs librustc: Mark all type implementations public. rs=impl-publicity 2013-02-28 11:32:24 -08:00
issue-3907-2.rs testsuite: Add various test cases 2013-03-27 10:09:02 -07:00
issue-3935.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3979-2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3979-generics.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3979-xcrate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-3979.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-4016 Test cases, some xfailed 2012-12-06 21:53:14 -08:00
issue-4016.rs hashmap: rm linear namespace 2013-04-03 10:30:18 -04:00
issue-4036.rs Stop writing directly to the final type/method/vtable sidetables from astconv 2013-03-26 15:39:12 -04:00
issue-4092 Test cases, some xfailed 2012-12-06 21:53:14 -08:00
issue-4092.rs rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
issue-4120.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
issue-4241.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-4252.rs testsuite: Add various test cases 2013-03-27 10:09:02 -07:00
issue-4325.rs testsuite: Add test case for #4325 2013-03-28 19:24:17 -07:00
issue-4333.rs testsuite: Add test for #4333 2013-03-28 19:15:24 -07:00
issue-4387.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
issue-4401.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-4448.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue-4541.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
issue-4542.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
issue-4830.rs Issue #4830 fix 2013-02-09 23:00:55 +10:00
issue-4875.rs Fix for issue 4875 2013-02-19 17:35:02 -05:00
issue-5243.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
issue-5572.rs syntax: Fix parsing global generics (Closes #5572) 2013-03-27 07:04:14 -07:00
issue-5754.rs add rust_dbg_extern_identity_TwoDoubles to prevent check-fast failure 2013-04-14 13:15:46 +08:00
issue2170exe.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue2378c.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
issue4516_ty_param.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue_3136_b.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue_3882.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
istr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
item-attributes.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
item-name-overload.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
iter-all.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-any.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-contains.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-count.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-eachi.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-filter-to-vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-flat-map-to-vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-foldl.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-map-to-vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-min-max.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-range.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
iter-to-vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
ivec-add.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
ivec-pass-by-value.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
ivec-tag.rs core: Extract comm from pipes. #4742 2013-02-21 17:36:54 -08:00
keyword-changes-2012-07-31.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
kindck-owned-trait-contains-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
labeled-break.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
lambda-infer-unresolved.rs librustc: Make the compiler ignore purity. 2013-03-18 17:21:16 -07:00
lambda-no-leak.rs Remove uses of log 2013-03-11 23:19:42 -07:00
large-records.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
last-use-in-block.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
last-use-in-cap-clause.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
last-use-is-capture.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
lazy-and-or.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
lazy-init.rs Remove uses of log 2013-03-11 23:19:42 -07:00
leak-box-as-tydesc.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
leak-tag-copy.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
leak-unique-as-tydesc.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
let-assignability.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
let-destruct-fresh-mem.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
let-destruct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
linear-for-loop.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
lint-non-camel-case-with-trailing-underscores.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
list.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
liveness-assign-imm-local-after-loop.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
liveness-assign-imm-local-after-ret.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
liveness-loop-break.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
liveness-move-in-loop.rs Remove ++ mode from the compiler (it is parsed as + mode) 2013-03-13 17:00:09 -04:00
log-err-phi.rs Remove uses of log 2013-03-11 23:19:42 -07:00
log-knows-the-names-of-variants-in-std.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
log-knows-the-names-of-variants.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
log-linearized.rs Remove uses of log 2013-03-11 23:19:42 -07:00
log-poly.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
log-str.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
long-while.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
loop-break-cont-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
loop-break-cont.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
loop-diverges.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
loop-scope.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
lots-a-fail.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
macro-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
macro-interpolation.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
macro-path.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
macro-stmt.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
max-min-classes.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
method-attributes.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
mlist-cycle.rs test: De-mut the test suite. rs=demuting 2013-02-22 18:35:01 -08:00
mlist.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
mod-inside-fn.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod-merge-hack-inst.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
mod-merge-hack-template.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
mod-merge-hack.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod-view-items.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
mod_dir_path.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod_dir_path2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod_dir_path3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod_dir_path_multi.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod_dir_recursive.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod_dir_simple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod_file.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mod_file_aux.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
mod_file_with_path_attr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
module-qualified-struct-destructure.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
monad.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
monomorphize-trait-in-fn-at.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
monomorphized-callees-with-ty-params-3314.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
morestack-address.rs Add AbiSet and integrate it into the AST. 2013-03-29 18:36:20 -07:00
morestack1.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
morestack2.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
morestack3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
morestack4.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
morestack5.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
morestack6.rs libcore: remove @Rng from rand, and use traits instead. 2013-04-24 22:34:10 +10:00
move-1-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-2-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-3-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-4-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-4.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-arg-2-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-arg-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-arg.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-nullary-fn.rs Remove ++ mode from the compiler (it is parsed as + mode) 2013-03-13 17:00:09 -04:00
move-scalar.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
move-self.rs librustc: Mark all type implementations public. rs=impl-publicity 2013-02-28 11:32:24 -08:00
moves-based-on-type-capture-clause.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
moves-based-on-type-cross-crate.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
multi-let.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
multiline-comment.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
multiple-trait-bounds.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
mut-function-arguments.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mut-vstore-expr.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
mutability-inherits-through-fixed-length-vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mutable-alias-vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
mutable-vec-drop.rs Merge remote-tracking branch 'bstrie/rimov' into incoming 2013-02-04 11:58:30 -08:00
mutual-recursion-group.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
negative.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
nested-alts.rs Remove uses of log 2013-03-11 23:19:42 -07:00
nested-class.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
nested-exhaustive-alt.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
nested-pattern.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
nested-patterns.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
new-impl-syntax.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
new-import-syntax.rs librustc: Forbid chained imports and fix the logic for one-level renaming imports 2013-03-02 16:49:30 -08:00
new-style-constants.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
new-style-fixed-length-vec.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
new-vstore-mut-box-syntax.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
newlambdas-ret-infer.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
newlambdas-ret-infer2.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
newlambdas.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
newtype-polymorphic.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
newtype-struct-with-dtor.rs another pub fn for check-fast 2013-03-27 11:30:38 -07:00
newtype-struct-xc-2.rs pub fn main for run-pass tests that didn't have it 2013-02-17 14:36:43 -08:00
newtype-struct-xc.rs pub fn main for run-pass tests that didn't have it 2013-02-17 14:36:43 -08:00
newtype.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
nil-decl-in-foreign.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
nil-pattern.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
non-boolean-pure-fns.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
non-legacy-modes.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
nullable-pointer-iotareduction.rs Add some tests for nullable-pointer enums 2013-04-22 08:51:34 -07:00
nullable-pointer-size.rs Add some tests for nullable-pointer enums 2013-04-22 08:51:34 -07:00
nullary-or-pattern.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
numeric-method-autoexport.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
one-tuple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
opeq.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
operator-associativity.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
operator-overloading.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
option-ext.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
option-unwrap.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
option_addition.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
or-pattern.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
output-slot-variants.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
over-constrained-vregs.rs Remove uses of log 2013-03-11 23:19:42 -07:00
overload-index-operator.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
packed-struct-borrow-element.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-struct-generic-layout.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-struct-generic-size.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-struct-layout.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-struct-match.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-struct-size.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-struct-vec.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-tuple-struct-layout.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-tuple-struct-size.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
paren-free.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
parse-fail.rs Remove uses of log 2013-03-11 23:19:42 -07:00
pass-by-copy.rs Remove uses of log 2013-03-11 23:19:42 -07:00
path.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
pattern-bound-var-in-for-each.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
pattern-in-closure.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
pipe-bank-proto.rs Remove ++ mode from the compiler (it is parsed as + mode) 2013-03-13 17:00:09 -04:00
pipe-detect-term.rs core: Remove pipes::spawn_service, spawn_service_recv 2013-04-18 14:07:35 -07:00
pipe-peek.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
pipe-pingpong-bounded.rs Remove ++ mode from the compiler (it is parsed as + mode) 2013-03-13 17:00:09 -04:00
pipe-pingpong-proto.rs Remove ++ mode from the compiler (it is parsed as + mode) 2013-03-13 17:00:09 -04:00
pipe-presentation-examples.rs Fix bug in coherence that causes all cross-crate impls to be regarded as 2013-03-06 11:02:19 -05:00
pipe-select-macro.rs Remove code that was awaiting a snapshot 2013-02-28 20:30:50 -08:00
pipe-select.rs core: Remove pipes::spawn_service, spawn_service_recv 2013-04-18 14:07:35 -07:00
pipe-sleep.rs core: Remove pipes::spawn_service, spawn_service_recv 2013-04-18 14:07:35 -07:00
placement-new-arena.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
platform_thread.rs Remove uses of log 2013-03-11 23:19:42 -07:00
pred-not-bool.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
preempt.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
private-class-field.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
private-method.rs librustc: Mark all type implementations public. rs=impl-publicity 2013-02-28 11:32:24 -08:00
propagate-expected-type-through-block.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
pub-use-xcrate.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
pub_use_mods_xcrate_exe.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
pure-fmt.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
pure-sum.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
purity-infer.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
rcvr-borrowed-to-region.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
rcvr-borrowed-to-slice.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
readalias.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
rec-align-u32.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
rec-align-u64.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
rec-auto.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
rec-extend.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
rec-tup.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
rec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
record-pat.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
recursion.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
reexport-star.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
reflect-visit-data.rs Export adt::trans_get_discr abstractly to the type visitor. 2013-04-08 01:03:42 -07:00
reflect-visit-type.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
region-dependent-addr-of.rs Link lifetimes of autoslice'd vectors (Issue #3184) 2013-04-05 06:00:54 -04:00
region-dependent-autofn.rs Link lifetimes of autoslice'd vectors (Issue #3184) 2013-04-05 06:00:54 -04:00
region-dependent-autoslice.rs Link lifetimes of autoslice'd vectors (Issue #3184) 2013-04-05 06:00:54 -04:00
region-return-interior-of-option.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-addr-of-interior-of-unique-box.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-addr-of-ret.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-appearance-constraint.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-borrow-at.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-borrow-estr-uniq.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-borrow-evec-at.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-borrow-evec-fixed.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-borrow-evec-uniq.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-borrow-uniq.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-bot.rs librustc: Convert all uses of old lifetime notation to new lifetime notation. rs=delifetiming 2013-03-18 17:21:14 -07:00
regions-copy-closure.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-creating-enums2.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-creating-enums5.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-escape-into-other-fn.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-expl-self.rs Add a (currently unused) "transformed self type" pointer into ty::method 2013-04-05 05:36:02 -04:00
regions-fn-subtyping-2.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
regions-fn-subtyping.rs Fix pretty-printer test failure by carrying the bound lifetime names through 2013-03-27 11:35:04 -07:00
regions-infer-borrow-scope-addr-of.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-infer-borrow-scope-view.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-infer-borrow-scope-within-loop-ok.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-infer-borrow-scope.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-infer-call-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-infer-call.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-infer-contravariance-due-to-ret.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-mock-trans-impls.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-mock-trans.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-nullary-variant.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-params.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
regions-self-impls.rs tests: changes in response to #5656 2013-04-10 17:32:03 -07:00
regions-self-in-enums.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-simple.rs Remove uses of log 2013-03-11 23:19:42 -07:00
regions-static-closure.rs librustc: Modify all code to use new lifetime binder syntax 2013-03-26 21:30:17 -07:00
regions-trait.rs tests: changes in response to #5656 2013-04-10 17:32:03 -07:00
repeated-vector-syntax.rs Expand on cleanups in trans for expr_repeat and add to tests. 2013-03-25 15:46:10 -07:00
resolve-issue-2428.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
resource-assign-is-not-copy.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
resource-cycle.rs test: Remove newtype enums from the test suite. rs=deenum 2013-03-11 09:35:58 -07:00
resource-cycle2.rs test: Remove newtype enums from the test suite. rs=deenum 2013-03-11 09:35:58 -07:00
resource-cycle3.rs test: Remove newtype enums from the test suite. rs=deenum 2013-03-11 09:35:58 -07:00
resource-destruct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
resource-generic.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
resource-in-struct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
ret-bang.rs Remove uses of log 2013-03-11 23:19:42 -07:00
ret-break-cont-in-block.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
ret-none.rs librustc: Separate most trait bounds with '+'. rs=plussing 2013-02-20 21:14:20 -08:00
return-nil.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
rt-sched-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
select-macro.rs tests/tutorials: Get rid of move. 2013-02-15 02:49:55 -08:00
self-shadowing-import.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
self-type-param.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
send-iloop.rs core: Extract comm from pipes. #4742 2013-02-21 17:36:54 -08:00
send-resource.rs core: Extract comm from pipes. #4742 2013-02-21 17:36:54 -08:00
send-type-inference.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
sendable-class.rs core: Extract comm from pipes. #4742 2013-02-21 17:36:54 -08:00
sendfn-generic-fn.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
sendfn-is-a-block.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
sendfn-spawn-with-fn-arg.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
seq-compare.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
shadow.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
shape_intrinsic_tag_then_rec.rs Remove uses of log 2013-03-11 23:19:42 -07:00
shebang.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
shift.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
signed-shift-const-eval.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
simple-alt-generic-tag.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
simple-generic-alt.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
simple-generic-tag.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
simple-infer.rs Remove uses of log 2013-03-11 23:19:42 -07:00
size-and-align.rs Remove uses of log 2013-03-11 23:19:42 -07:00
spawn-fn.rs Remove uses of log 2013-03-11 23:19:42 -07:00
spawn-types.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
spawn.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
spawn2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
stable-addr-of.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
stat.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
static-fn-inline-xc.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
static-fn-trait-xc.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
static-impl.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
static-method-in-trait-with-tps-intracrate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
static-method-test.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
static-method-xcrate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
static-methods-in-traits.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
static-methods-in-traits2.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
str-append.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
str-concat.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
str-growth.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
str-idx.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
str-multiline.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
string-self-append.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
struct-deref.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
struct-destructuring-cross-crate.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
struct-field-assignability.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
struct-like-variant-construct.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
struct-like-variant-match.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
struct-literal-dtor.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
struct-order-of-eval-1.rs Add regression tests for a subtle aspect of expr_struct translation. 2013-03-06 20:41:57 -08:00
struct-order-of-eval-2.rs Add regression tests for a subtle aspect of expr_struct translation. 2013-03-06 20:41:57 -08:00
struct-pattern-matching.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
struct-return.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
structured-compare.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
super.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
supported-cast.rs Remove uses of log 2013-03-11 23:19:42 -07:00
swap-1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
swap-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
swap-overlapping.rs Don't perform swap when src == dst. #5041 2013-02-20 16:18:48 -08:00
syntax-extension-fmt.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
syntax-extension-minor.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
syntax-extension-shell.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
syntax-extension-source-utils.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tag-align-dyn-u64.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tag-align-dyn-variants.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tag-align-shape.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tag-align-u64.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tag-disr-val-shape.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tag-exports.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
tag-in-block.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
tag-variant-disr-val.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tag.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tail-call-arg-leak.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
tail-cps.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tail-direct.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
task-comm-0.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
task-comm-1.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
task-comm-3.rs core::comm: Modernize constructors to use new 2013-04-18 14:07:35 -07:00
task-comm-4.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
task-comm-5.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
task-comm-6.rs core::comm: Modernize constructors to use new 2013-04-18 14:07:35 -07:00
task-comm-7.rs core::comm: Modernize constructors to use new 2013-04-18 14:07:35 -07:00
task-comm-9.rs core::comm: Modernize constructors to use new 2013-04-18 14:07:35 -07:00
task-comm-10.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
task-comm-11.rs Remove legacy_modes from test cases 2013-02-22 14:53:44 -08:00
task-comm-12.rs option: rm functions that duplicate methods 2013-03-26 22:44:40 -04:00
task-comm-13.rs core: Extract comm from pipes. #4742 2013-02-21 17:36:54 -08:00
task-comm-14.rs core::comm: Modernize constructors to use new 2013-04-18 14:07:35 -07:00
task-comm-15.rs Remove legacy_modes from test cases 2013-02-22 14:53:44 -08:00
task-comm-16.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
task-comm-17.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
task-comm-chan-nil.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
task-killjoin-rsrc.rs librustc: Forbid destructors from being attached to any structs that might contain non-Owned fields. r=nmatsakis 2013-03-21 17:31:34 -07:00
task-killjoin.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
task-life-0.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
task-spawn-move-and-copy.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
terminate-in-initializer.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
test-ignore-cfg.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
test-runner-hides-main.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
threads.rs Remove uses of log 2013-03-11 23:19:42 -07:00
too-much-recursion.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
trait-bounds.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-cast.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-composition-trivial.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
trait-default-method-bound-subst.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-default-method-bound-subst2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-default-method-bound-subst3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-default-method-bound-subst4.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-default-method-bound.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-generic.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-auto-xc-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-auto-xc.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-auto.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-call-bound-inherited.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-call-bound-inherited2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-cast-without-call-to-supertrait.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-cast.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-cross-trait-call-xc.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-cross-trait-call.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-diamond.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-multiple-inheritors.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-multiple-params.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-num.rs Restore Num trait 2013-04-14 02:19:35 +10:00
trait-inheritance-num0.rs librustc: Remove all uses of static from functions. rs=destatic 2013-03-22 10:27:39 -07:00
trait-inheritance-num1.rs Restore Num trait 2013-04-14 02:19:35 +10:00
trait-inheritance-num2.rs Restore Num trait 2013-04-14 02:19:35 +10:00
trait-inheritance-num3.rs Restore Num trait 2013-04-14 02:19:35 +10:00
trait-inheritance-num5.rs Restore Num trait 2013-04-14 02:19:35 +10:00
trait-inheritance-overloading-simple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-overloading-xc-exe.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-overloading.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-self-in-supertype.rs Cleanup substitutions and treatment of generics around traits in a number of ways. 2013-04-09 08:06:10 -07:00
trait-inheritance-self.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
trait-inheritance-simple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-static.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-static2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-subst.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-subst2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance-visibility.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-inheritance2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-region-pointer-simple.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-static-method-overwriting.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
trait-to-str.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
trait-typedef-cc.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
traits-default-method-macro.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
traits-default-method-self.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
traits-default-method-trivial.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
traits.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
trivial-message.rs Remove uses of log 2013-03-11 23:19:42 -07:00
tstate-loop-break.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
tup.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tuple-struct-construct.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
tuple-struct-destructuring.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tuple-struct-matching.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
tuple-struct-trivial.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
type-in-nested-module.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
type-namespace.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
type-param-constraints.rs Remove legacy_modes from test cases 2013-02-22 14:53:44 -08:00
type-param.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
type-params-in-for-each.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
type-ptr.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
type-sizes.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
type-use-i1-versus-i8.rs Rename core::private to core::unstable. #4743 2013-03-01 14:55:47 -08:00
typeclasses-eq-example-static.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
typeclasses-eq-example.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
typestate-cfg-nesting.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
typestate-multi-decl.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
u8-incr-decr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
u8-incr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
u32-decr.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
uint.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
unary-minus-suffix-inference.rs Remove uses of log 2013-03-11 23:19:42 -07:00
unconstrained-region.rs testsuite: Add various test cases 2013-03-27 10:09:02 -07:00
unify-return-ty.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
uniq-cc-generic.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
uniq-cc.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
unique-alt-discrim.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
unique-assign-copy.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-assign-drop.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-assign-generic.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-assign.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-autoderef-field.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-autoderef-index.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-cmp.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-containing-tag.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-copy-box.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-create.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
unique-decl-init-copy.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-decl-init.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-decl-move-temp.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-decl-move.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-decl.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
unique-deref.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-destructure.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-drop-complex.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
unique-fn-arg-move.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-fn-arg-mut.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-fn-arg.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-fn-ret.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-generic-assign.rs librustc: Separate most trait bounds with '+'. rs=plussing 2013-02-20 21:14:20 -08:00
unique-in-tag.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-in-vec-copy.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-in-vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-init.rs librustc: Replace impl Type : Trait with impl Trait for Type. rs=implflipping 2013-02-14 14:44:12 -08:00
unique-kinds.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-log.rs Remove uses of log 2013-03-11 23:19:42 -07:00
unique-move-drop.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-move-temp.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-move.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-mutable.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-object.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-pat-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-pat-3.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-pat.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
unique-pinned-nocopy-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-rec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-send-2.rs core::comm: Modernize constructors to use new 2013-04-18 14:07:35 -07:00
unique-send.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-swap.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unit-like-struct.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
unit.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
unnamed_argument_mode.rs librustc: Replace all uses of fn() with &fn(). rs=defun 2013-03-11 09:35:58 -07:00
unreachable-code-1.rs tests/tutorials: Get rid of move. 2013-02-15 02:49:55 -08:00
unreachable-code.rs Remove uses of log 2013-03-11 23:19:42 -07:00
unsafe-fn-called-from-unsafe-blk.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
unsafe-fn-called-from-unsafe-fn.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
unsafe-pointer-assignability.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unused-move-capture.rs test: Remove fn@, fn~, and fn& from the test suite. rs=defun 2013-03-02 18:47:47 -08:00
unused-move.rs tests/tutorials: Get rid of move. 2013-02-15 02:49:55 -08:00
unwind-box.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
unwind-resource.rs core::comm: Modernize constructors to use new 2013-04-18 14:07:35 -07:00
unwind-resource2.rs librustc: Forbid destructors from being attached to any structs that might contain non-Owned fields. r=nmatsakis 2013-03-21 17:31:34 -07:00
unwind-unique.rs Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
use-crate-name-alias.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
use-import-export.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
use-trait-before-def.rs librustc: Remove implicit self from the language, except for old-style drop blocks. 2013-03-13 20:07:10 -07:00
use-uninit-alt.rs Remove uses of log 2013-03-11 23:19:42 -07:00
use-uninit-alt2.rs Remove uses of log 2013-03-11 23:19:42 -07:00
use.rs Bump version to 0.7-pre 2013-04-10 13:12:53 -07:00
utf8.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
utf8_chars.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
utf8_idents.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
variant-attributes.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
variant-structs-trivial.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
vec-concat.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-drop.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
vec-fixed-length.rs librustc: Remove all uses of the old [T * N] fixed-length vector syntax 2013-03-26 21:29:34 -07:00
vec-growth.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-ivec-deadlock.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
vec-late-init.rs Remove uses of log 2013-03-11 23:19:42 -07:00
vec-matching-autoslice.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-matching-fold.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-matching-legal-tail-element-borrow.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
vec-matching.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-position.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-push.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
vec-self-append.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-slice-drop.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-slice.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-tail-matching.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-to_str.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec-trailing-comma.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vec.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
vector-no-ann-2.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
warn-ctypes-inhibit.rs librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. rs=deexterning 2013-03-07 22:32:52 -08:00
weird-exprs.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
while-cont.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
while-flow-graph.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
while-loop-constraints-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
while-prelude-drop.rs test: replace uses of old deriving attribute with new one 2013-03-22 06:30:53 -04:00
while-with-break.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
while.rs Remove uses of log 2013-03-11 23:19:42 -07:00
writealias.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
x86stdcall.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
x86stdcall2.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
yield.rs option: rm functions that duplicate methods 2013-03-26 22:44:40 -04:00
yield1.rs option: rm functions that duplicate methods 2013-03-26 22:44:40 -04:00
yield2.rs Remove uses of log 2013-03-11 23:19:42 -07:00
zip-same-length.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00