os-rust/src/test/run-pass
Huon Wilson b48e37e8ee syntax: make a macros-injection pass; conditionally define debug! to a noop based on cfg(debug).
Macros can be conditionally defined because stripping occurs before macro
expansion, but, the built-in macros were only added as part of the actual
expansion process and so couldn't be stripped to have definitions conditional
on cfg flags.

debug! is defined conditionally in terms of the debug config, expanding to
nothing unless the --cfg debug flag is passed (to be precise it expands to
`if false { normal_debug!(...) }` so that they are still type checked, and
to avoid unused variable lints).
2013-07-16 15:05:50 +10: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 Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
alignment-gep-tup-like-2.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
alloca-from-derived-tydesc.rs test: De-mut the test suite. rs=demuting 2013-02-22 18:35:01 -08:00
anon-extern-mod-cross-crate-2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
anon-extern-mod.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
anon-trait-static-method.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
anon_trait_static_method_exe.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
argument-passing.rs librustc: Disallow multiple patterns from appearing in a "let" declaration. 2013-06-04 21:45:42 -07:00
arith-0.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
arith-1.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
arith-2.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
arith-unsigned.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
artificial-block.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
assert-approx-eq-macro-success.rs Add assert_approx_eq! macro 2013-05-06 21:51:48 +10:00
assert-eq-macro-success.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
assign-assign.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
assignability-trait.rs remove each from vec, HashMap and HashSet 2013-06-25 16:28:02 -04:00
attr-before-view-item.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
attr-before-view-item2.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07: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-no-drop-flag-size.rs Rename #[no_drop_flag] to #[unsafe_no_drop_flag] 2013-06-27 23:20:42 -04: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 Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
auto-instantiate.rs Remove uses of log 2013-03-11 23:19:42 -07:00
auto-loop.rs remove each from vec, HashMap and HashSet 2013-06-25 16:28:02 -04:00
auto-ref-bounded-ty-param.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
auto-ref-newtype.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
auto-ref-slice-plus-ref.rs avoid broken += operator, bogus use of const 2013-05-01 11:03:12 -04:00
auto-ref-sliceable.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
auto-ref.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
autobind.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
autoderef-and-borrow-method-receiver.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
autoderef-method-newtype.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
autoderef-method-on-trait.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
autoderef-method-priority.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
autoderef-method-twice-but-not-thrice.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
autoderef-method-twice.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
autoderef-method.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
autoref-intermediate-types-issue-3585.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
bare-static-string.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
big-literals.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
binary-minus-without-space.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
bind-by-move.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
binops.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
bitv-perf-test.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
bitwise.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
block-arg-call-as.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
block-arg-can-be-followed-by-binop.rs add IteratorUtil to the prelude 2013-06-14 23:15:42 -04:00
block-arg-can-be-followed-by-block-arg.rs add IteratorUtil to the prelude 2013-06-14 23:15:42 -04:00
block-arg-can-be-followed-by-call.rs add IteratorUtil to the prelude 2013-06-14 23:15:42 -04:00
block-arg-in-parentheses.rs add IteratorUtil to the prelude 2013-06-14 23:15:42 -04:00
block-arg-used-as-any.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
block-arg-used-as-lambda.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
block-arg.rs remove some method resolve workarounds 2013-07-07 19:51:13 -04:00
block-explicit-types.rs Remove uses of log 2013-03-11 23:19:42 -07:00
block-expr-precedence.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
block-fn-coerce.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
block-iter-1.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
block-iter-2.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
bool-not.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
borrow-by-val-method-receiver.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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 vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
borrowck-borrow-from-expr-block.rs ptr: split out borrowed pointer utilities 2013-06-02 19:24:33 -04:00
borrowck-fixed-length-vecs.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
borrowck-lend-args.rs test: Fix tests. 2013-05-08 17:04:02 -07:00
borrowck-mut-uniq.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
borrowck-mut-vec-as-imm-slice.rs remove each from vec, HashMap and HashSet 2013-06-25 16:28:02 -04:00
borrowck-nested-calls.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
borrowck-preserve-box-in-field.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
borrowck-preserve-box-in-pat.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
borrowck-preserve-box-in-uniq.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
borrowck-preserve-cond-box.rs librustc: Disallow multiple patterns from appearing in a "let" declaration. 2013-06-04 21:45:42 -07:00
borrowck-preserve-expl-deref.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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-rvalues-mutable.rs Add two tests for rvalue mutability 2013-05-16 15:10:50 -04:00
borrowck-scope-of-deref-issue-4666.rs Add test for #4666, which didn't *quite* seem to be covered by 2013-05-07 11:59:38 -04:00
borrowck-unary-move-2.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
borrowck-univariant-enum.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
borrowck-wg-autoderef-and-autoborrowvec-combined-issue-6272.rs Address nits by @catamorphism 2013-07-08 13:55:10 -04: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 vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
borrowck-wg-borrow-mut-to-imm.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
borrowck-wg-simple.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
borrowck-wg-two-imm-borrows.rs rustc: add rooting, write-guards to slices etc 2013-05-03 16:27:16 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
borrowed-ptr-pattern-option.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
borrowed-ptr-pattern.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04: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 Add copies to type params with Copy bound 2013-06-16 12:47:36 -04: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 librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
break-value.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
break.rs remove each from vec, HashMap and HashSet 2013-06-25 16:28:02 -04:00
bug-7183-generics.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
bug-7295.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
c-stack-as-value.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
c-stack-returning-int64.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
call-closure-from-overloaded-op.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
cap-clause-move.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
capture_nil.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
cast-mutable-trait.rs Allow casting to mutable trait objects. 2013-04-17 00:34:25 +02:00
cast-region-to-uint.rs ptr: split out borrowed pointer utilities 2013-06-02 19:24:33 -04:00
cast.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
cci_borrow.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
cci_iter_exe.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
cci_nested_exe.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
cci_no_inline_exe.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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-macros-foo.rs driver: perform stripping before and after macro expansion. 2013-06-26 23:02:14 +10:00
cfg-macros-notfoo.rs driver: perform stripping before and after macro expansion. 2013-06-26 23:02:14 +10: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
char.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
child-outlives-parent.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
class-attributes-1.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
class-attributes-2.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
class-cast-to-trait-cross-crate-2.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
class-cast-to-trait-multiple-types.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
class-cast-to-trait.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
class-dtor.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
class-exports.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
class-impl-parameterized-trait.rs Replaces the free-standing functions in f32, &c. 2013-07-08 18:05:17 +02:00
class-impl-very-parameterized-trait.rs Split mutable methods out of Set and Map 2013-07-13 19:44:36 -07:00
class-implement-trait-cross-crate.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
class-implement-traits.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
class-implements-multiple-traits.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
class-method-cross-crate.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
class-methods-cross-crate.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
class-methods.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
class-poly-methods-cross-crate.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
class-poly-methods.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
class-separate-impl.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -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-typarams.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
classes-cross-crate.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
classes-simple-method.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
classes-simple.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
classes.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
cleanup-copy-mode.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
clone-with-exterior.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
close-over-big-then-small-data.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
closure-bounds-can-capture-chan.rs librustc: Fix merge fallout and test cases. 2013-06-28 10:44:17 -04:00
closure-bounds-copyable-squiggle-closure.rs Fix pretty-printing for bounded closures. Close #7333. 2013-06-26 18:14:43 -04:00
closure-bounds-recursive-stack-closure.rs Add a run-pass test for recursive copyable stack closures. 2013-07-01 18:05:46 -04:00
closure-bounds-squiggle-closure-as-copyable-typaram.rs Fix pretty-printing for bounded closures. Close #7333. 2013-06-26 18:14:43 -04:00
closure-inference.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
closure-inference2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
cmp-default.rs cmp: Use default methods in trait Eq, require only Eq::eq 2013-07-15 13:24:35 +02: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 Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
coerce-reborrow-imm-vec-arg.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
coerce-reborrow-imm-vec-rcvr.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04: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 Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
coerce-reborrow-mut-vec-arg.rs Convert vec::{reverse, swap} to methods. 2013-06-30 21:15:25 +10:00
coerce-reborrow-mut-vec-rcvr.rs Convert vec::{reverse, swap} to methods. 2013-06-30 21:15:25 +10:00
coherence-impl-in-fn.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
comm.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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
cond-macro-no-default.rs Use parentheses for cond! macro instead of preceding pipes 2013-05-15 11:02:17 +10:00
cond-macro.rs Use parentheses for cond! macro instead of preceding pipes 2013-05-15 11:02:17 +10:00
conditional-compile-arch.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
conditional-compile.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
conditional-debug-macro-off.rs syntax: make a macros-injection pass; conditionally define debug! to a noop based on cfg(debug). 2013-07-16 15:05:50 +10:00
conditional-debug-macro-on.rs syntax: make a macros-injection pass; conditionally define debug! to a noop based on cfg(debug). 2013-07-16 15:05:50 +10:00
const-autoderef-newtype.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-autoderef.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-big-enum.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-binops.rs Test fixes, use LLVMConstFCmp in ConstFCmp 2013-05-19 22:09:32 -04:00
const-bound.rs librustc: Rename Const to Freeze 2013-06-28 10:44:15 -04:00
const-cast-ptr-int.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const-cast.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const-const.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-contents.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-cross-crate-const.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-cross-crate-extern.rs test: Update tests and import the prelude in some more places. 2013-05-22 21:57:10 -07:00
const-deref.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-enum-byref-self.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-enum-ptr.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
const-enum-struct.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-enum-struct2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-enum-structlike.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
const-enum-tuple.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-enum-tuple2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-enum-tuplestruct.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-enum-tuplestruct2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-enum-vec-index.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
const-enum-vec-ptr.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
const-enum-vector.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
const-expr-in-fixed-length-vec.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
const-expr-in-vec-repeat.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
const-extern-function.rs test: Update tests and import the prelude in some more places. 2013-05-22 21:57:10 -07:00
const-fields-and-indexing.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const-fn-val.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-negative.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-rec-and-tup.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const-region-ptrs-noncopy.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const-region-ptrs.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const-str-ptr.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const-struct-offsets.rs automated whitespace fixes 2013-06-13 18:03:08 -04:00
const-struct.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const-tuple-struct.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
const-unit-struct.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
const-vec-of-fns.rs xfail test hitting a codegen bug (issue #7385) 2013-06-25 16:31:17 -04:00
const-vec-syntax.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
const-vecs-and-slices.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
const.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
consts-in-patterns.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
core-rt-smoke.rs libsyntax: Fix more merge fallout. 2013-05-22 21:57:11 -07:00
core-run-destroy.rs test: adjust some test cases of run-pass for android 2013-06-17 18:50:29 +09:00
crate-method-reexport-grrrrrrr.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
crateresolve1.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
crateresolve7.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
cross-crate-const-pat.rs Test for cross-crate const in match pattern. 2013-03-21 00:38:31 -07:00
cross-crate-newtype-struct-pat.rs Add test for cross crate newtype struct in match pattern. 2013-04-29 17:35:36 -07:00
cycle-collection.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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 Take default methods out from behind the flag. 2013-07-11 15:51: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 syntax: implement #[deriving(DeepClone)]. Fixes #6514. 2013-05-16 22:55:08 +10:00
deriving-clone-generic-enum.rs syntax: implement #[deriving(DeepClone)]. Fixes #6514. 2013-05-16 22:55:08 +10:00
deriving-clone-generic-struct.rs syntax: implement #[deriving(DeepClone)]. Fixes #6514. 2013-05-16 22:55:08 +10:00
deriving-clone-generic-tuple-struct.rs syntax: implement #[deriving(DeepClone)]. Fixes #6514. 2013-05-16 22:55:08 +10:00
deriving-clone-struct.rs syntax: implement #[deriving(DeepClone)]. Fixes #6514. 2013-05-16 22:55:08 +10:00
deriving-clone-tuple-struct.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
deriving-cmp-generic-enum.rs vec: rm old_iter implementations, except BaseIter 2013-06-21 03:20:22 -04: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 vec: rm old_iter implementations, except BaseIter 2013-06-21 03:20:22 -04:00
deriving-cmp-generic-tuple-struct.rs vec: rm old_iter implementations, except BaseIter 2013-06-21 03:20:22 -04:00
deriving-encodable-decodable.rs xfail-fast the deriving test 2013-05-31 14:44:44 -06: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-global.rs xfail-pretty on un-xfailed test 2013-06-24 01:45:06 -04:00
deriving-meta-empty-trait-list.rs deal with windows 2013-06-24 01:35:12 -04:00
deriving-meta-multiple.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
deriving-meta.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
deriving-rand.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
deriving-self-lifetime-totalord-totaleq.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
deriving-self-lifetime.rs librustc: Disallow multiple patterns from appearing in a "let" declaration. 2013-06-04 21:45:42 -07:00
deriving-to-str.rs Expand the deriving(ToStr) implementation 2013-06-22 09:53:17 -07:00
deriving-via-extension-c-enum.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
deriving-via-extension-enum.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
deriving-via-extension-iter-bytes-enum.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
deriving-via-extension-iter-bytes-struct.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
deriving-via-extension-struct-empty.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
deriving-via-extension-struct-like-enum-variant.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
deriving-via-extension-struct-tuple.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
deriving-via-extension-struct.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
deriving-via-extension-type-params.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
deriving-zero.rs Implement a deriving(Zero) attribute 2013-06-14 19:12:37 -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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
do-for-empty-args.rs test: Use the new for protocol 2013-05-10 19:20:20 -04:00
do-for-no-args.rs test: Use the new for protocol 2013-05-10 19:20:20 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
do3.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Change finalize -> drop. 2013-06-25 21:14:39 -04:00
drop-trait.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
dupe-first-attr.rc rustc: Only accept main functions at the crate level. #4433 2013-04-29 17:10:50 -07:00
duplicate-use.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07: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 option: remove redundant old_iter impls 2013-06-11 14:06:12 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
enum-alignment.rs test: Fix problem with check-fast. rs=burningtree 2013-05-29 21:21:33 -07:00
enum-discrim-range-overflow.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
enum-disr-val-pretty.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
enum-export-inheritance.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
enum-nullable-simplifycfg-misopt.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
estr-uniq.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
evec-internal-boxes.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
evec-internal.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
evec-slice.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
exec-env.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
explicit-self-generic.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
explicit-self-objects-box.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
explicit-self-objects-simple.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
explicit-self-objects-uniq.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
explicit-self.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
explicit_self_xcrate_exe.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
expr-block-generic-unique1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block-generic-unique2.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
expr-block-generic.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
expr-block-unique.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-block.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
expr-copy.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
expr-elseif-ref.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
expr-if-box.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
expr-if-generic-box1.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-if-generic-box2.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
expr-if-generic.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
expr-if-struct.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
expr-if-unique.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
expr-if.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
expr-match-box.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
expr-match-fail-all.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
expr-match-fail.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
expr-match-generic-box1.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
expr-match-generic-box2.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
expr-match-generic-unique1.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
expr-match-generic-unique2.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
expr-match-generic.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
expr-match-struct.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
expr-match-unique.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
expr-match.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
expr-repeat-vstore.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
expr-scope.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
exterior.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
extern-call-deep2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
extern-call-scrub.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
extern-call.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
extern-crosscrate.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-mod-abi.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
extern-mod-ordering-exe.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
extern-mod-syntax.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
extern-mod-url.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
extern-pass-char.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pass-double.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pass-TwoU8s.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pass-TwoU16s.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pass-TwoU32s.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pass-TwoU64s-ref.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pass-TwoU64s.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pass-u32.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pass-u64.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-pub.rs std: Rewrite vec_reserve_shared_actual in Rust 2013-06-24 17:07:01 -07:00
extern-return-TwoU8s.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-return-TwoU16s.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-return-TwoU32s.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-return-TwoU64s.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
extern-stress.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
extern-take-value.rs test: Update tests and import the prelude in some more places. 2013-05-22 21:57:10 -07:00
extern-yield.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
fact.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
fat-arrow-match.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
filter-block-view-items.rs Actually filter view_items in blocks 2013-05-24 17:31:15 -05:00
fixed-point-bind-box.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
fixed-point-bind-unique.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
fixed_length_copy.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
fixed_length_vec_glue.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
float-literal-inference.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
float-nan.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
floatlits.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
fn-assign-managed-to-bare-1.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
fn-assign-managed-to-bare-2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
fn-bare-assign.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
fn-bare-spawn.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04: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 vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
fn-pattern-expected-type.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 remove each from vec, HashMap and HashSet 2013-06-25 16:28:02 -04:00
for-loop-fail.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
foreach-nested.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
foreach-put-structured.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
foreach-simple-outer-slot.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
foreign-call-no-runtime.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
foreign-dupe.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
foreign-fn-linkname.rs std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_with_null[_consume](). 2013-06-12 12:21:04 +10:00
foreign-lib-path.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
foreign-mod-unused-const.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
foreign-mod.rc Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
foreign-no-abi.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
foreign-struct.rs test: Fix tests. 2013-05-08 17:04:02 -07:00
foreign.rc Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
foreign2.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
fun-call-variants.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
fun-indirect-call.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
func-arg-incomplete-pattern.rs Add new tests for irrefutable patterns used in various tricky ways 2013-07-08 13:53:44 -04:00
func-arg-ref-pattern.rs Add new tests for irrefutable patterns used in various tricky ways 2013-07-08 13:53:44 -04:00
func-arg-wild-pattern.rs Add new tests for irrefutable patterns used in various tricky ways 2013-07-08 13:53:44 -04:00
functional-struct-update.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
generic-alias-box.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
generic-alias-unique.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
generic-box.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
generic-derived-type.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
generic-exterior-unique.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
generic-ivec-leak.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
generic-ivec.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
generic-newtype-struct.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
generic-object.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
generic-recursive-tag.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
generic-static-methods.rs Fix the handling of type params on generic static methods. Closes #7571. 2013-07-11 15:51:09 -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-match.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
generic-tag-values.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
generic-type-synonym.rs test: Fix tests. 2013-03-07 22:37:58 -08:00
generic-type.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
generic-unique.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
getopts_ref.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
global-scope.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
guards-not-exhaustive.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
guards.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
hashmap-memory.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
hello.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
html-literals.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
i8-incr.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
impl-privacy-xc-1.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
impl-privacy-xc-2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07: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 Remove vec::reversed, replaced by iterators. 2013-07-04 00:46:50 +10:00
import-in-block.rs remove deprecated vec::{is_empty, len} functions 2013-06-08 23:19:30 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
infinite-loops.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
init-res-into-things.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
inner-module.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
instantiable.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
int-conversion-coherence.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
intrinsic-alignment.rs test: adjust some test cases of run-pass for android 2013-06-17 18:50:29 +09:00
intrinsic-atomics-cc.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
intrinsic-atomics.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
intrinsic-frame-address.rs test: Remove #[legacy_modes] from the test suite. 2013-04-29 14:30:55 -07:00
intrinsic-move-val.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
intrinsic-uninit.rs Add uninit intrinsic 2013-05-09 22:23:38 +12:00
intrinsics-integer.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
intrinsics-math.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
invoke-external-foreign.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07: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 add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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 Change finalize -> drop. 2013-06-25 21:14:39 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
issue-1251.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
issue-1460.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-1516.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-1660.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
issue-1696.rs std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_with_null[_consume](). 2013-06-12 12:21:04 +10:00
issue-1701.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04: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-2185.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-2190-1.rs librustc: Remove the const declaration form everywhere 2013-03-22 22:24:35 -07:00
issue-2190-2.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04: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-2214.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-2216.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -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 Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -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 extra: Rename deque::Deque to ringbuf::RingBuf and impl trait Deque 2013-07-11 15:54:35 +02:00
issue-2414-c.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2428.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
issue-2445-b.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
issue-2445.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -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 Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-2502.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
issue-2526-a.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-2550.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2611-3.rs librustc: Rename Const to Freeze 2013-06-28 10:44:15 -04:00
issue-2631-b.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-2633-2.rs test: Fix tests. 2013-05-08 17:04:02 -07: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 Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-2718.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
issue-2723-b.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-2734.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-2735-2.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-2735-3.rs Change finalize -> drop. 2013-06-25 21:14:39 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
issue-2804-2.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-2804.rs Correct issue-2804 test 2013-05-30 16:55:50 -04:00
issue-2834.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
issue-2895.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-2904.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
issue-2930.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
issue-2989.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3012-2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3026.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3176.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3220.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-3250.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-3290.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
issue-3389.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
issue-3424.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3429.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-3447.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
issue-3461.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-3500.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue-3556.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-3563-2.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
issue-3563-3.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
issue-3574.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-3609.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3656.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-3683.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
issue-3702 Test cases, some xfailed 2012-12-06 21:53:14 -08:00
issue-3702.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3743.rs testsuite: Add test cases that pass 2013-06-07 19:37:29 -07:00
issue-3753.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -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-3796.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
issue-3847.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-3860.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
issue-3874.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
issue-3878.rs tests/tutorials: Get rid of move. 2013-02-15 02:49:55 -08:00
issue-3888-2.rs Convert vec::[mut_]slice to methods, remove vec::const_slice. 2013-06-27 22:36:09 +10:00
issue-3895.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-3904.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07: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 Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
issue-3979-generics.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
issue-3979-xcrate.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
issue-3979.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
issue-4016 Test cases, some xfailed 2012-12-06 21:53:14 -08:00
issue-4016.rs testsuite: Add test cases that pass 2013-06-07 19:37:29 -07:00
issue-4036.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-4092 Test cases, some xfailed 2012-12-06 21:53:14 -08:00
issue-4092.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
issue-4107.rs testsuite: Make main fn public 2013-05-22 14:13:42 -07:00
issue-4120.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
issue-4228.rs Add test for #4228. 2013-06-09 08:00:52 -04:00
issue-4241.rs deal with windows 2013-06-24 01:35:12 -04:00
issue-4252.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-4333.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-4387.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
issue-4401.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-4446.rs testsuite: Add test cases, some xfailed 2013-06-27 16:56:47 -07:00
issue-4448.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-4541.rs deal with windows 2013-06-24 01:35:12 -04:00
issue-4542.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
issue-4735.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-4830.rs Issue #4830 fix 2013-02-09 23:00:55 +10:00
issue-4875.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue-5060.rs testsuite: Add test cases, some xfailed 2013-06-27 16:56:47 -07:00
issue-5192.rs testsuite: Add test cases, some xfailed 2013-06-27 16:56:47 -07:00
issue-5243.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
issue-5280.rs testsuite: Add test cases, some xfailed 2013-06-27 16:56:47 -07:00
issue-5315.rs testsuite: Add two test cases (one xfailed) 2013-05-09 12:04:22 -07:00
issue-5321-immediates-with-bare-self.rs Add test for #5321. 2013-06-27 21:36:30 -04:00
issue-5353.rs minor automated whitespace fixes 2013-05-18 22:40:12 -04:00
issue-5517.rs Add a test for issue 5517 2013-05-06 19:17:55 -04:00
issue-5530.rs testsuite: Add test cases that pass 2013-06-07 19:37:29 -07:00
issue-5550.rs testsuite: Add working test for #5550 2013-05-27 17:32:31 -07:00
issue-5554.rs testsuite: Add main function to issue-5554 test 2013-05-28 13:43:10 -07:00
issue-5572.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-5741.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
issue-5754.rs add rust_dbg_extern_identity_TwoDoubles to prevent check-fast failure 2013-04-14 13:15:46 +08:00
issue-6117.rs The null case of a nullable-poiner enum might not be nullary. 2013-04-30 11:36:22 -07:00
issue-6128.rs testsuite: Add xfailed test case for #6128 2013-07-15 11:12:56 -07:00
issue-6130.rs rustc: relax limits on (u)int type limit lint. Fixes #6130. 2013-05-18 01:49:36 +10:00
issue-6141-leaking-owned-fn.rs When autoborrowing a fn in trans, adjust the type of the datum to be &fn. 2013-05-07 11:41:27 -04:00
issue-6341.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-6344-let.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue-6344-match.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
issue2170exe.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
issue2378c.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
issue_3882.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
istr.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
item-attributes.rs Deduplicate words in code comments 2013-06-06 10:48:27 +03:00
item-name-overload.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
iter-range.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
ivec-add.rs Add copies to type params with Copy bound 2013-06-16 12:47:36 -04:00
ivec-pass-by-value.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
ivec-tag.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07: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 Infer default static/Owned bounds for unbounded heap fns/traits (#7264) 2013-06-26 18:14:43 -04:00
labeled-break.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
lambda-infer-unresolved.rs avoid broken += operator, bogus use of const 2013-05-01 11:03:12 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
last-use-is-capture.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
lazy-and-or.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
let-destruct-fresh-mem.rs librustc: Disallow "mut" from distributing over bindings. 2013-06-28 10:44:15 -04:00
let-destruct-ref.rs Add new tests for irrefutable patterns used in various tricky ways 2013-07-08 13:53:44 -04:00
let-destruct.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
linear-for-loop.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
lint-non-camel-case-types-non-uppercase-statics-unicode.rs rustc: add a lint to enforce uppercase statics. 2013-07-01 17:52:57 +10: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
lint-non-uppercase-statics-lowercase-mut-statics.rs rustc: add a lint to enforce uppercase statics. 2013-07-01 17:52:57 +10: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 add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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 librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -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 test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
log-knows-the-names-of-variants.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
log-linearized.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
log-poly.rs testsuite: more pub fn main 2013-03-27 10:09:03 -07:00
log-str.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
lots-a-fail.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
macro-stmt.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
match-borrowed_str.rs last bit of whitespace 2013-06-26 19:00:44 -04:00
match-bot-2.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-bot.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-drop-strs-issue-4541.rs Correct match-drop-strs-issue-4541 when used in check-fast 2013-07-08 13:55:11 -04:00
match-implicit-copy-unique.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-join.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
match-naked-record-expr.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-naked-record.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-path.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-pattern-drop.rs Update existing tests to account for stricter, more correct handling of irrefutable patterns 2013-07-08 13:53:44 -04:00
match-pattern-lit.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-pattern-no-type-params.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-pattern-simple.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-phi.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-range-static.rs minor automated whitespace fixes 2013-05-18 22:40:12 -04:00
match-range.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-ref-binding-in-guard-3256.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
match-ref-binding-mut-option.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-ref-binding-mut.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-ref-binding.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-str.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-tag.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-unique-bind.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-value-binding-in-guard-3291.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
match-vec-rvalue.rs Fix matching of rvalues with destructors 2013-05-30 15:20:36 -04:00
match-with-ret-arm.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
max-min-classes.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -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: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
mlist.rs check-fast fallout from removing export, r=burningtree 2013-02-01 19:43:17 -08:00
mod-inside-fn.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mod-view-items.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
mod_dir_path.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mod_dir_path2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mod_dir_path3.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mod_dir_path_multi.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mod_dir_recursive.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mod_dir_simple.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mod_file.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mod_file_aux.rs Reliciense makefiles and testsuite. Yup. 2012-12-10 17:32:58 -08:00
mod_file_with_path_attr.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
module-qualified-struct-destructure.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
monad.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
monomorphize-abi-alignment.rs automated whitespace fixes 2013-06-13 18:03:08 -04:00
monomorphize-trait-in-fn-at.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
monomorphized-callees-with-ty-params-3314.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
morestack6.rs Merge remote-tracking branch 'mozilla/master' 2013-07-03 14:49:13 -07:00
move-1-unique.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
move-1.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
move-3.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
move-4-unique.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
move-4.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
move-arg-2-unique.rs test: Fix tests. 2013-05-08 17:04:02 -07:00
move-arg-2.rs test: Fix tests. 2013-05-08 17:04:02 -07:00
move-arg.rs test: Fix tests. 2013-05-08 17:04:02 -07:00
move-nullary-fn.rs test: Fix tests. 2013-05-08 17:04:02 -07:00
move-out-of-field.rs std: convert str::reserve* to methods, and methodise str::push_*. 2013-06-10 23:02:55 +10:00
move-scalar.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
move-self.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
moves-based-on-type-capture-clause.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07: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 automated whitespace fixes 2013-06-13 18:03:08 -04:00
multibyte.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
mut-function-arguments.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
mut-vstore-expr.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
mutability-inherits-through-fixed-length-vec.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
mutable-alias-vec.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04: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-class.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
nested-exhaustive-match.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
nested-matchs.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
new-impl-syntax.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
new-import-syntax.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
new-style-constants.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
new-style-fixed-length-vec.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
new-vstore-mut-box-syntax.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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 Un-xfail working test 2013-06-24 08:05:41 -04:00
newlambdas.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
newtype-polymorphic.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
newtype-struct-drop-run.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
newtype-struct-with-dtor.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
newtype-struct-xc-2.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
newtype-struct-xc.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
newtype-temporary.rs Fix dereference of temporary immediate newtype structs 2013-07-02 01:08:51 +09:00
newtype.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
non-legacy-modes.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
nullable-pointer-iotareduction.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
nullable-pointer-size.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
nullary-or-pattern.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
numeric-method-autoexport.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
once-move-out-on-heap.rs xfail-fast once fn run-pass tests 2013-06-29 03:54:09 -04:00
once-move-out-on-stack.rs xfail-fast once fn run-pass tests 2013-06-29 03:54:09 -04:00
one-tuple.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
opeq.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
operator-associativity.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
operator-overloading.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
option-ext.rs std: replace str::find_str* with a method 2013-06-10 23:02:54 +10:00
option-unwrap.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
option_addition.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
or-pattern.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
owned-trait-objects.rs Fix take glue of owned trait objects 2013-06-22 09:37:40 +02:00
packed-struct-borrow-element.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-struct-generic-layout.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
packed-struct-generic-size.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
packed-struct-layout.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
packed-struct-match.rs testsuite: tests for #[packed] structs. 2013-04-10 23:47:53 +10:00
packed-struct-size-xc.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
packed-struct-size.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
packed-struct-vec.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
packed-tuple-struct-layout.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
packed-tuple-struct-size.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07: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 librustc: Disallow multiple patterns from appearing in a "let" declaration. 2013-06-04 21:45: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
pattern-in-closure.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
pipe-bank-proto.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
pipe-detect-term.rs std::cell: Modernize constructors 2013-06-04 12:03:58 +02:00
pipe-peek.rs librustc: Disallow "mut" from distributing over bindings. 2013-06-28 10:44:15 -04:00
pipe-pingpong-bounded.rs std::cell: Modernize constructors 2013-06-04 12:03:58 +02:00
pipe-pingpong-proto.rs std::cell: Modernize constructors 2013-06-04 12:03:58 +02:00
pipe-presentation-examples.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
pipe-select-macro.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
pipe-select.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
pipe-sleep.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
placement-new-arena.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
platform_thread.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
pred-not-bool.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
preempt.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
private-class-field.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
private-method.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
propagate-expected-type-through-block.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
pub-extern-privacy.rs automated whitespace fixes 2013-06-13 18:03:08 -04:00
pub-use-xcrate.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
pub_use_mods_xcrate_exe.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
pure-fmt.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
pure-sum.rs librustc: Disallow multiple patterns from appearing in a "let" declaration. 2013-06-04 21:45:42 -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 Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
rcvr-borrowed-to-slice.rs extend the iterator tutorial 2013-07-12 01:53:50 -04:00
readalias.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
rec-align-u32.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
rec-align-u64.rs test: adjust some test cases of run-pass for android 2013-06-17 18:50:29 +09:00
rec-auto.rs Clonify some of run-pass 2013-03-15 18:27:15 -04:00
rec-extend.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
rec-tup.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
rec.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
record-pat.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
reexported-static-methods-cross-crate.rs Reexport static methods on structs & enums. 2013-06-01 04:14:58 -07:00
reflect-visit-data.rs remove headers from exchange allocations 2013-07-08 04:54:41 -04:00
reflect-visit-type.rs Correct merge failures 2013-07-08 13:55:11 -04:00
region-dependent-addr-of.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-addr-of-interior-of-unique-box.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
regions-addr-of-ret.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
regions-appearance-constraint.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-borrow-at.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-borrow-estr-uniq.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-borrow-evec-at.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
regions-borrow-evec-fixed.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-borrow-evec-uniq.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-borrow-uniq.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-expl-self.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
regions-fn-subtyping-2.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
regions-infer-borrow-scope-view.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
regions-infer-borrow-scope-within-loop-ok.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-infer-borrow-scope.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-infer-call-2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-infer-call.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-infer-contravariance-due-to-ret.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-mock-trans.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
regions-self-impls.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
regions-self-in-enums.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
regions-simple.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
regions-static-closure.rs test: Fix tests. 2013-05-08 17:04:02 -07:00
regions-trait.rs Infer default static/Owned bounds for unbounded heap fns/traits (#7264) 2013-06-26 18:14:43 -04:00
repeated-vector-syntax.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
resolve-issue-2428.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
resource-assign-is-not-copy.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
resource-cycle.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
resource-cycle2.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
resource-cycle3.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
resource-destruct.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
resource-generic.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
resource-in-struct.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
ret-bang.rs Remove uses of log 2013-03-11 23:19:42 -07:00
ret-break-cont-in-block.rs add IteratorUtil to the prelude 2013-06-14 23:15:42 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
send-iloop.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
send-resource.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
send-type-inference.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
sendable-class.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
sendfn-generic-fn.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
sendfn-is-a-block.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
sendfn-spawn-with-fn-arg.rs std::cell: Modernize constructors 2013-06-04 12:03:58 +02:00
seq-compare.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
shadow.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
shape_intrinsic_tag_then_rec.rs Remove the last traces of shapes 2013-06-26 18:08:23 -04:00
shebang.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
shift.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
signed-shift-const-eval.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
simd-binop.rs Implement SIMD arithmetics 2013-07-10 23:35:59 +09:00
simd-type.rs Add SIMD vector type tests 2013-05-07 23:35:33 +09:00
simple-generic-match.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04: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
simple-match-generic-tag.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
size-and-align.rs Remove uses of log 2013-03-11 23:19:42 -07:00
sized-borrowed-pointer.rs Add simple tests for Sized 2013-05-30 21:41:41 -04:00
sized-owned-pointer.rs Add simple tests for Sized 2013-05-30 21:41:41 -04:00
spawn-fn.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
spawn-types.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
spawn.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
spawn2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
stable-addr-of.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
stat.rs Fix stat.rs to not pollute the build directory. Closes #6959. 2013-06-05 16:00:12 -07:00
static-assert.rs Implement static_assert attribute 2013-05-22 13:13:24 -04: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 the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
static-method-in-trait-with-tps-intracrate.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
static-method-xcrate.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
static-methods-in-traits.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
static-methods-in-traits2.rs test: Remove pure from the test suite 2013-03-22 12:57:28 -07:00
static-mut-foreign.rs Fix 'static mut' tests 2013-06-24 07:42:32 -07:00
static-mut-xc.rs Fix 'static mut' tests 2013-06-24 07:42:32 -07:00
str-append.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
str-concat.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
str-growth.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
str-idx.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
str-multiline.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
string-self-append.rs std: remove str::{len, slice, is_empty} in favour of methods. 2013-06-10 23:02:54 +10:00
struct-deref.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
struct-destructuring-cross-crate.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
struct-field-assignability.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
struct-like-variant-construct.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
struct-like-variant-match.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
struct-literal-dtor.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
struct-order-of-eval-1.rs Revert "std: convert {vec,str}::to_owned to methods." 2013-06-13 19:06:47 -07:00
struct-order-of-eval-2.rs Revert "std: convert {vec,str}::to_owned to methods." 2013-06-13 19:06:47 -07:00
struct-pattern-matching.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
struct-return.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
structured-compare.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
super.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
supported-cast.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
swap-1.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
swap-2.rs Convert vec::{reverse, swap} to methods. 2013-06-30 21:15:25 +10:00
swap-overlapping.rs rm some uses of to_mut_unsafe_ptr 2013-06-08 15:02:32 -04:00
syntax-extension-bytes.rs Made bytes!() accept a list of string, integer or char literals 2013-05-18 00:26:04 +02:00
syntax-extension-fmt.rs Fix compiling empty fmt! strings 2013-06-22 11:19:35 -07:00
syntax-extension-minor.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
tag-align-dyn-u64.rs re-xfail some tests that fail on x86 2013-05-02 14:12:55 -07:00
tag-align-dyn-variants.rs xfail tests again for now (issues #7336, #7340) 2013-06-24 01:35:12 -04:00
tag-align-shape.rs fixed the test case, hope it's still testing something 2013-04-30 16:31:55 -07:00
tag-align-u64.rs xfail tests again for now (issues #7336, #7340) 2013-06-24 01:35:12 -04:00
tag-disr-val-shape.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
tag.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-1.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-3.rs vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
task-comm-4.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-5.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-6.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-7.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-9.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-10.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-11.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-12.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-13.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-14.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-15.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-16.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-17.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-comm-chan-nil.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-killjoin-rsrc.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
task-killjoin.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-life-0.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
task-spawn-move-and-copy.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
terminate-in-initializer.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
test-ignore-cfg.rs Merge pull request #7595 from thestinger/iterator 2013-07-08 01:42:07 -07:00
test-runner-hides-main.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
threads.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
trait-bounds-basic.rs librustc: Fix merge fallout and test cases. 2013-06-28 10:44:17 -04:00
trait-bounds-in-arc.rs Rename Const/Owned in more places 2013-06-28 10:47:59 -04:00
trait-bounds.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-cast.rs Fix/annotate a variety of xfails 2013-06-24 01:35:11 -04:00
trait-composition-trivial.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
trait-default-method-bound-subst.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
trait-default-method-bound-subst2.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
trait-default-method-bound-subst3.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
trait-default-method-bound-subst4.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
trait-default-method-bound.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
trait-default-method-xc.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
trait-generic.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
trait-inheritance-auto-xc-2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-auto-xc.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-auto.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-call-bound-inherited.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-call-bound-inherited2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-cast-without-call-to-supertrait.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-cast.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-cross-trait-call-xc.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-cross-trait-call.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-diamond.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-multiple-inheritors.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-multiple-params.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-num.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
trait-inheritance-num0.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
trait-inheritance-num1.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
trait-inheritance-num2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
trait-inheritance-num3.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
trait-inheritance-num5.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
trait-inheritance-overloading-simple.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
trait-inheritance-overloading-xc-exe.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-overloading.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
trait-inheritance-self-in-supertype.rs Replaces the free-standing functions in f32, &c. 2013-07-08 18:05:17 +02:00
trait-inheritance-self.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
trait-inheritance-simple.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-static.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-static2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-subst.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
trait-inheritance-subst2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance-visibility.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-inheritance2.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
trait-region-pointer-simple.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
trait-static-method-overwriting.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
trait-to-str.rs Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this 2013-06-30 21:59:44 +10: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
trait-with-bounds-default.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
traits-default-method-macro.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
traits-default-method-mut.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
traits-default-method-self.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
traits-default-method-trivial.rs Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
trivial-message.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
tup.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
tuple-struct-construct.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
tuple-struct-destructuring.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
tuple-struct-matching.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
tuple-struct-trivial.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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 librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04: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 test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
type-use-i1-versus-i8.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
typeclasses-eq-example-static.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
typeclasses-eq-example.rs add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04: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: Disallow multiple patterns from appearing in a "let" declaration. 2013-06-04 21:45:42 -07:00
u8-incr-decr.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
u8-incr.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
u32-decr.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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
unfoldr-cross-crate.rs iterator: UnfoldrIterator::new should have function argument last 2013-06-29 01:03:37 -04:00
unify-return-ty.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
uniq-cc-generic.rs librustc: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04: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-assign-copy.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-assign-drop.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-assign-generic.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-assign.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-autoderef-field.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-autoderef-index.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-cmp.rs librustc: Remove fail_unless! 2013-03-29 16:39:08 -07:00
unique-containing-tag.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-copy-box.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-decl-init.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-decl-move-temp.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-decl-move.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-destructure.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-fn-arg-mut.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-fn-arg.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-fn-ret.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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: Change "Owned" to "Send" everywhere 2013-06-28 10:44:15 -04:00
unique-log.rs Remove uses of log 2013-03-11 23:19:42 -07:00
unique-match-discrim.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
unique-move-drop.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-move-temp.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-move.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-mutable.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-object-move.rs rustc: Check for null before dropping ~objects. #5192 2013-05-23 15:33:34 -07:00
unique-object.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 Change finalize -> drop. 2013-06-25 21:14:39 -04:00
unique-rec.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
unique-send-2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
unique-send.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
unique-swap.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
unit-like-struct-drop-run.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
unit-like-struct.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
unwind-resource.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
unwind-resource2.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
unwind-unique.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
use-crate-name-alias.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07: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-match.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
use-uninit-match2.rs Change alt to match in filenames. 2013-05-27 17:28:39 -04:00
use.rs Bump version numbers to 0.8-pre 2013-07-08 10:25:45 -07:00
utf8.rs add IteratorUtil to the prelude 2013-06-14 23:15:42 -04:00
utf8_chars.rs Optimize is_utf8 2013-07-11 14:23:15 -04:00
utf8_idents.rs Replaces the free-standing functions in f32, &c. 2013-07-08 18:05:17 +02: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 Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
vec-growth.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04: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 test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
vec-matching-fold.rs Move checking for moves and initialization of local variables and patterns into 2013-05-28 20:22:14 -04:00
vec-matching-legal-tail-element-borrow.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
vec-matching.rs test: Update tests to use the new syntax. 2013-05-22 21:57:10 -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 test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
vec-slice-drop.rs Change finalize -> drop. 2013-06-25 21:14:39 -04:00
vec-slice.rs Convert vec::[mut_]slice to methods, remove vec::const_slice. 2013-06-27 22:36:09 +10:00
vec-tail-matching.rs Update existing tests to account for stricter, more correct handling of irrefutable patterns 2013-07-08 13:53:44 -04:00
vec-to_str.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
vec-trailing-comma.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
vec.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04: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 test: Update tests to use the new syntax. 2013-05-22 21:57:10 -07:00
while-cont.rs Fix typos 2013-05-09 02:34:47 +09: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 librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
while-with-break.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
while.rs Remove uses of log 2013-03-11 23:19:42 -07:00
writealias.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
x86stdcall.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
x86stdcall2.rs test: fix for missing ARM support 2013-04-23 11:31:54 +09:00
yield.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
yield1.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
yield2.rs librustc: Stop reexporting the standard modules from prelude. 2013-05-29 19:04:53 -07:00
zip-same-length.rs librustc: Disallow multiple patterns from appearing in a "let" declaration. 2013-06-04 21:45:42 -07:00