rust/src/test/run-pass
Alex Crichton 0c7c93b8e8 std: Improve non-task-based usage
A few notable improvements were implemented to cut down on the number of aborts
triggered by the standard library when a local task is not found.

* Primarily, the unwinding functionality was restructured to support an unsafe
  top-level function, `try`. This function invokes a closure, capturing any
  failure which occurs inside of it. The purpose of this function is to be as
  lightweight of a "try block" as possible for rust, intended for use when the
  runtime is difficult to set up.

  This function is *not* meant to be used by normal rust code, nor should it be
  consider for use with normal rust code.

* When invoking spawn(), a `fail!()` is triggered rather than an abort.

* When invoking LocalIo::borrow(), which is transitively called by all I/O
  constructors, None is returned rather than aborting to indicate that there is
  no local I/O implementation.

* Invoking get() on a TLD key will return None if no task is available

* Invoking replace() on a TLD key will fail if no task is available.

A test case was also added showing the variety of things that you can do without
a runtime or task set up now. In general, this is just a refactoring to abort
less quickly in the standard library when a local task is not found.
2014-06-04 11:13:12 -07:00
..
foreign-mod-src
foreign-src
mod_dir_implicit_aux
mod_dir_simple syntax: Tighten search paths for inner modules 2014-05-17 01:01:47 -07:00
module-polymorphism3-files/float-template
syntax-extension-source-utils-files
alias-uninit-value.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
alignment-gep-tup-like-1.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
alloca-from-derived-tydesc.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
anon_trait_static_method_exe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
anon-extern-mod-cross-crate-2.rs Touch up and rebase previous commits 2014-05-13 17:24:08 -07:00
anon-extern-mod.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
anon-trait-static-method.rs
argument-passing.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
arith-0.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
arith-1.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
arith-2.rs
arith-unsigned.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
artificial-block.rs
asm-concat-src.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
asm-in-out-operand.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
asm-out-assign.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
assert-eq-macro-success.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
assign-assign.rs
assignability-trait.rs Fix fallout of requiring uint indices 2014-04-02 15:56:31 -07:00
attr-before-view-item2.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
attr-before-view-item.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
attr-main-2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
attr-main.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
attr-mix-new.rs Get "make check" to work with unused-attribute 2014-05-24 16:49:46 -07:00
attr-no-drop-flag-size.rs
attr-shebang.rs Remove ignore-fast that has cropped up 2014-04-06 15:55:43 -07:00
attr-start.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
attr.rs Remove ignore-fast that has cropped up 2014-04-06 15:55:43 -07:00
auto-encode.rs lib{serialize, uuid}: Fix snake case errors. 2014-05-30 17:55:41 +01:00
auto-instantiate.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
auto-loop.rs test: Automatically remove all ~[T] from tests. 2014-03-21 23:37:21 +11:00
auto-ref-bounded-ty-param.rs
auto-ref-slice-plus-ref.rs libcore: Remove all uses of ~str from libcore. 2014-05-22 14:42:02 -07:00
auto-ref-sliceable.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
auto-ref.rs
autobind.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
autoderef-and-borrow-method-receiver.rs
autoderef-method-on-trait.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
autoderef-method-priority.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
autoderef-method-twice-but-not-thrice.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
autoderef-method-twice.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
autoderef-method.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
autoref-intermediate-types-issue-3585.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
backtrace.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
bare-static-string.rs
big-literals.rs syntax: Fix printing INT64_MIN 2014-05-13 17:24:08 -07:00
binary-minus-without-space.rs
bind-by-move.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
bind-field-short-with-modifiers.rs
binops.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
bitv-perf-test.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
bitwise.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
block-arg-call-as.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
block-arg.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
block-explicit-types.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
block-expr-precedence.rs
block-fn-coerce.rs
block-iter-1.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
block-iter-2.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
bool-not.rs
borrow-by-val-method-receiver.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
borrowck-assign-to-subfield.rs
borrowck-binding-mutbl.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
borrowck-borrow-from-expr-block.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
borrowck-borrow-of-mut-base-ptr-safe.rs
borrowck-closures-two-imm.rs
borrowck-fixed-length-vecs.rs
borrowck-freeze-frozen-mut.rs
borrowck-lend-args.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
borrowck-macro-interaction-issue-6304.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
borrowck-move-by-capture-ok.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
borrowck-mut-uniq.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
borrowck-mut-vec-as-imm-slice.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
borrowck-nested-calls.rs test: Remove/update some old ignored tests 2014-04-25 19:45:53 +09:00
borrowck-pat-enum.rs syntax: Fix parsing << with closure types 2014-05-13 17:24:08 -07:00
borrowck-pat-reassign-no-binding.rs
borrowck-preserve-box-in-moved-value.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
borrowck-root-while-cond-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
borrowck-root-while-cond.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
borrowck-rvalues-mutable.rs
borrowck-scope-of-deref-issue-4666.rs
borrowck-static-item-in-fn.rs
borrowck-uniq-via-ref.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
borrowck-univariant-enum.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
borrowed-ptr-pattern-2.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
borrowed-ptr-pattern-3.rs
borrowed-ptr-pattern-infallible.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
borrowed-ptr-pattern-option.rs
borrowed-ptr-pattern.rs
box-compare.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
box-in-tup.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
box-inside-if2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
box-inside-if.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
box-pattern.rs libsyntax: Add box PAT to the pattern grammar. RFC #14. 2014-05-02 18:31:16 -07:00
box-unbox.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
box.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
boxed-class-type-substitution.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
break-value.rs
break.rs test: Automatically remove all ~[T] from tests. 2014-03-21 23:37:21 +11:00
bug-7183-generics.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
bug-7295.rs
builtin-superkinds-capabilities-transitive.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
builtin-superkinds-capabilities-xc.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
builtin-superkinds-capabilities.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
builtin-superkinds-in-metadata.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
builtin-superkinds-phantom-typaram.rs
builtin-superkinds-self-type.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
builtin-superkinds-simple.rs
builtin-superkinds-typaram.rs
by-value-self-in-mut-slot.rs
bytes-macro-static.rs Make bytes!() return 'static 2014-05-18 13:03:38 -07:00
c-stack-as-value.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
c-stack-returning-int64.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
call-closure-from-overloaded-op.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
can-copy-pod.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
cancel-clean-via-immediate-rvalue-ref.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
capture_nil.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
capturing-logging.rs libstd: Remove ~str from all libstd modules except fmt and str. 2014-05-22 14:42:01 -07:00
cast-region-to-uint.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
cast.rs
cci_borrow.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
cci_capture_clause.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
cci_impl_exe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
cci_iter_exe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
cci_nested_exe.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
cci_no_inline_exe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
cell-does-not-clone.rs
cfg_inner_static.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
cfg-family.rs
cfg-macros-foo.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
cfg-macros-notfoo.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
cfg-match-arm.rs Allow attributes on match arms 2014-04-23 21:48:22 -07:00
cfg-target-family.rs
cfgs-on-items.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
char.rs
check-static-mut-slices.rs rustc: Move mut slice check to check_static 2014-03-06 22:50:39 +01:00
child-outlives-parent.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-attributes-1.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-attributes-2.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-cast-to-trait-cross-crate-2.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-cast-to-trait-multiple-types.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-cast-to-trait.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-dtor.rs
class-exports.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-impl-very-parameterized-trait.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
class-implement-trait-cross-crate.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-implement-traits.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-method-cross-crate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
class-methods-cross-crate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
class-methods.rs
class-poly-methods-cross-crate.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
class-poly-methods.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
class-separate-impl.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-str-field.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
class-typarams.rs
classes-cross-crate.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
classes-self-referential.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
classes-simple-cross-crate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
classes-simple-method.rs
classes-simple.rs
classes.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
cleanup-arm-conditional.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
cleanup-copy-mode.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
cleanup-rvalue-during-if-and-while.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
cleanup-rvalue-for-scope.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
cleanup-rvalue-scopes.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
cleanup-rvalue-temp-during-incomplete-alloc.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
cleanup-shortcircuit.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
clone-with-exterior.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
close-over-big-then-small-data.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
closure-bounds-can-capture-chan.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
closure-inference2.rs
closure-inference.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
closure-reform.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
closure-syntax.rs syntax: Fix parsing << with closure types 2014-05-13 17:24:08 -07:00
cmp-default.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
coerce-reborrow-imm-ptr-arg.rs
coerce-reborrow-imm-ptr-rcvr.rs
coerce-reborrow-imm-vec-arg.rs
coerce-reborrow-imm-vec-rcvr.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
coerce-reborrow-mut-ptr-arg.rs
coerce-reborrow-mut-ptr-rcvr.rs
coerce-reborrow-mut-vec-arg.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
coerce-reborrow-mut-vec-rcvr.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
coerce-to-closure-and-proc.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
coherence-impl-in-fn.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
colorful-write-macros.rs core: Document FormatWriter and allow write! 2014-05-17 22:10:39 -07:00
comm.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
compare-generic-enums.rs
complex.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
concat.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
conditional-compile-arch.rs
conditional-compile.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
conditional-debug-macro-off.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
conditional-debug-macro-on.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
const-autoderef.rs
const-big-enum.rs
const-binops.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
const-block-cross-crate-fn.rs Allow blocks in const expressions 2014-05-13 17:24:07 -07:00
const-block-item-macro-codegen.rs Allow blocks in const expressions 2014-05-13 17:24:07 -07:00
const-block-item.rs Allow blocks in const expressions 2014-05-13 17:24:07 -07:00
const-block.rs Allow blocks in const expressions 2014-05-13 17:24:07 -07:00
const-bound.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
const-cast-ptr-int.rs
const-cast.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
const-const.rs
const-contents.rs
const-cross-crate-const.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
const-cross-crate-extern.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
const-deref.rs
const-enum-byref-self.rs
const-enum-byref.rs
const-enum-cast.rs
const-enum-ptr.rs
const-enum-struct2.rs
const-enum-struct.rs
const-enum-structlike.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
const-enum-tuple2.rs
const-enum-tuple.rs
const-enum-tuplestruct2.rs
const-enum-tuplestruct.rs
const-enum-vec-index.rs
const-enum-vec-ptr.rs
const-enum-vector.rs
const-expr-in-fixed-length-vec.rs
const-expr-in-vec-repeat.rs
const-extern-function.rs std: Change assert_eq!() to use {} instead of {:?} 2014-02-28 23:01:54 -08:00
const-fields-and-indexing.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
const-fn-val.rs syntax: Tweak parsing lifetime bounds on closures 2014-04-06 00:08:21 -07:00
const-negative.rs
const-nullary-enum.rs
const-nullary-univariant-enum.rs
const-rec-and-tup.rs
const-region-ptrs-noncopy.rs
const-region-ptrs.rs
const-str-ptr.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
const-struct-offsets.rs
const-struct.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
const-tuple-struct.rs
const-unit-struct.rs
const-vec-of-fns.rs Fix other bugs with new closure borrowing 2014-04-23 10:03:43 -07:00
const-vec-syntax.rs
const-vecs-and-slices.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
const.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
consts-in-patterns.rs
core-run-destroy.rs Process::new etc should support non-utf8 commands/args 2014-05-14 22:52:31 -07:00
crate-method-reexport-grrrrrrr.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
crateresolve1.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
crateresolve2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
crateresolve3.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
crateresolve4.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
crateresolve5.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
crateresolve8.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
cross-crate-const-pat.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
cross-crate-newtype-struct-pat.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
cycle-collection.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
dead-code-one-arm-if.rs Test fixes and rebase conflicts 2014-03-15 22:56:46 -07:00
deep-vector2.rs Remove ignore-fast that has cropped up 2014-04-06 15:55:43 -07:00
deep-vector.rs Remove ignore-fast that has cropped up 2014-04-06 15:55:43 -07:00
deep.rs
default-method-parsing.rs
default-method-simple.rs
default-method-supertrait-vtable.rs
deref-lval.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
deref.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
deriving-bounds.rs Register new snapshots 2014-05-04 22:35:21 -07:00
deriving-clone-enum.rs Removed DeepClone. Issue #12698. 2014-03-08 15:09:00 -05:00
deriving-clone-generic-enum.rs Removed DeepClone. Issue #12698. 2014-03-08 15:09:00 -05:00
deriving-clone-generic-struct.rs Removed DeepClone. Issue #12698. 2014-03-08 15:09:00 -05:00
deriving-clone-generic-tuple-struct.rs Removed DeepClone. Issue #12698. 2014-03-08 15:09:00 -05:00
deriving-clone-struct.rs Removed DeepClone. Issue #12698. 2014-03-08 15:09:00 -05:00
deriving-clone-tuple-struct.rs
deriving-cmp-generic-enum.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
deriving-cmp-generic-struct-enum.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
deriving-cmp-generic-struct.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
deriving-cmp-generic-tuple-struct.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
deriving-cmp-shortcircuit.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
deriving-encodable-decodable.rs lib{serialize, uuid}: Fix snake case errors. 2014-05-30 17:55:41 +01:00
deriving-enum-single-variant.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-global.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
deriving-hash.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
deriving-in-fn.rs Remove all ToStr impls, add Show impls 2014-02-23 20:51:56 -08:00
deriving-in-macro.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-meta-empty-trait-list.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
deriving-meta-multiple.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-meta.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-primitive.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-rand.rs std: Recreate a rand module 2014-05-29 16:18:26 -07:00
deriving-self-lifetime-totalord-totaleq.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
deriving-self-lifetime.rs
deriving-show-2.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
deriving-show.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
deriving-via-extension-c-enum.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-via-extension-enum.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-via-extension-hash-enum.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
deriving-via-extension-hash-struct.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
deriving-via-extension-struct-empty.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-via-extension-struct-like-enum-variant.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-via-extension-struct-tuple.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-via-extension-struct.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-via-extension-type-params.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
deriving-zero.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
die-macro.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
div-mod.rs
double-ref.rs syntax: Parses && as & & whenever appropriate. 2014-04-17 17:48:59 +09:00
double-unbox.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
drop-on-empty-block-exit.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
drop-on-ret.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
drop-trait-generic.rs
drop-trait.rs
dupe-first-attr.rc
duplicated-external-mods.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
early-ret-binop-add.rs
early-vtbl-resolution.rs
else-if.rs
empty-allocation-non-null.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
empty-allocation-rvalue-non-null.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
empty-mutable-vec.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
empty-tag.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
enum-alignment.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
enum-clike-ffi-as-int.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
enum-discr.rs
enum-discrim-autosizing.rs
enum-discrim-manual-sizing.rs
enum-discrim-range-overflow.rs
enum-discrim-width-stuff.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
enum-disr-val-pretty.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
enum-export-inheritance.rs
enum-nullable-const-null-with-fields.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
enum-nullable-simplifycfg-misopt.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
enum-size-variance.rs rustc: add a lint for large enum variants 2014-05-22 23:01:47 -07:00
enum-variants.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
enum-vec-initializer.rs
estr-slice.rs remove leftover obsolete string literals 2014-05-01 17:42:57 -04:00
estr-uniq.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
evec-internal-boxes.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
evec-internal.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
evec-slice.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
exec-env.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
explicit_self_xcrate_exe.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
explicit-i-suffix.rs
explicit-self-closures.rs
explicit-self-generic.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
explicit-self-objects-uniq.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
explicit-self.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
exponential-notation.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
export-abstract-tag.rs
export-glob-imports-target.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
export-multi.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
export-non-interference2.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
export-non-interference3.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
export-non-interference.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
export-tag-variant.rs
export-unexported-dep.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
expr-block-box.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-block-fn.rs syntax: Tweak parsing lifetime bounds on closures 2014-04-06 00:08:21 -07:00
expr-block-generic-box1.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-block-generic-box2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-block-generic-unique1.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
expr-block-generic-unique2.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
expr-block-generic.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
expr-block-ref.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-block-slot.rs
expr-block-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
expr-block.rs
expr-copy.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
expr-elseif-ref2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-elseif-ref.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-empty-ret.rs
expr-fn.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
expr-if-box.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
expr-if-fail-all.rs
expr-if-fail.rs
expr-if-generic-box1.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-if-generic-box2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-if-generic.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
expr-if-struct.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
expr-if-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
expr-if.rs
expr-match-box.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
expr-match-fail-all.rs
expr-match-fail.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
expr-match-generic-box1.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-match-generic-box2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
expr-match-generic-unique1.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
expr-match-generic-unique2.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
expr-match-generic.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
expr-match-struct.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
expr-match-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
expr-match.rs
expr-scope.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
ext-expand-inner-exprs.rs Expand string literals and exprs inside of macros 2014-03-02 14:12:02 -08:00
exterior.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
extern-1.rs
extern-call-deep2.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
extern-call-deep.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
extern-call-direct.rs
extern-call-indirect.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
extern-call-scrub.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
extern-calling-convention-test.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
extern-compare-with-return-type.rs std: Change assert_eq!() to use {} instead of {:?} 2014-02-28 23:01:54 -08:00
extern-crosscrate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
extern-foreign-crate.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
extern-mod-abi.rs
extern-mod-ordering-exe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
extern-mod-syntax.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
extern-pass-char.rs
extern-pass-double.rs
extern-pass-empty.rs rustc: Fix x86 ffi for empty struct arguments 2014-03-19 16:41:51 +09:00
extern-pass-TwoU8s.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
extern-pass-TwoU16s.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
extern-pass-TwoU32s.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
extern-pass-TwoU64s.rs test: Enable #9205-related tests on windows 2014-06-02 12:08:19 +09:00
extern-pass-u32.rs
extern-pass-u64.rs
extern-pub.rs
extern-return-TwoU8s.rs
extern-return-TwoU16s.rs
extern-return-TwoU32s.rs
extern-return-TwoU64s.rs test: Enable #9205-related tests on windows 2014-06-02 12:08:19 +09:00
extern-stress.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
extern-take-value.rs std: Change assert_eq!() to use {} instead of {:?} 2014-02-28 23:01:54 -08:00
extern-yield.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
extoption_env-not-defined.rs
fact.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
fail-in-dtor-drops-fields.rs
fat-arrow-match.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
field-destruction-order.rs
filter-block-view-items.rs
fixed_length_copy.rs
fixed_length_vec_glue.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
float2.rs
float-literal-inference.rs
float-nan.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
float-signature.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
float.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
floatlits.rs
fn-abi.rs Register new snapshots 2014-05-09 21:13:02 -07:00
fn-bare-assign.rs All uses of extern fn should mean extern "C" fn. Closes #9309. 2014-02-24 13:24:57 +13:00
fn-bare-coerce-to-block.rs
fn-bare-item.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
fn-bare-size.rs
fn-bare-spawn.rs All uses of extern fn should mean extern "C" fn. Closes #9309. 2014-02-24 13:24:57 +13:00
fn-coerce-field.rs syntax: Tweak parsing lifetime bounds on closures 2014-04-06 00:08:21 -07:00
fn-lval.rs All uses of extern fn should mean extern "C" fn. Closes #9309. 2014-02-24 13:24:57 +13:00
fn-pattern-expected-type-2.rs
fn-pattern-expected-type.rs
fn-type-infer.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
for-destruct.rs test: Automatically remove all ~[T] from tests. 2014-03-21 23:37:21 +11:00
for-loop-fail.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
foreach-external-iterators-break.rs
foreach-external-iterators-hashmap-break-restart.rs Move std::{trie, hashmap} to libcollections 2014-02-23 00:35:11 -08:00
foreach-external-iterators-hashmap.rs Move std::{trie, hashmap} to libcollections 2014-02-23 00:35:11 -08:00
foreach-external-iterators-loop.rs
foreach-external-iterators-nested.rs
foreach-external-iterators.rs
foreach-nested.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
foreach-put-structured.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
foreach-simple-outer-slot.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
foreign2.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
foreign-call-no-runtime.rs std: Remove run_in_bare_thread 2014-05-15 13:50:50 -07:00
foreign-dupe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
foreign-fn-linkname.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
foreign-mod-unused-const.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
foreign-no-abi.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
foreign-struct.rs Remove remaining nolink usages.(fixes #12810) 2014-03-12 15:01:25 -07:00
format-no-uppercase-statics.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
format-ref-cell.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
fsu-moves-and-copies.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
fun-call-variants.rs
fun-indirect-call.rs All uses of extern fn should mean extern "C" fn. Closes #9309. 2014-02-24 13:24:57 +13:00
func-arg-incomplete-pattern.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
func-arg-ref-pattern.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
func-arg-wild-pattern.rs
functional-struct-upd.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
generic-alias-box.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
generic-alias-unique.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
generic-box.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-default-type-params-cross-crate.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-default-type-params.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
generic-derived-type.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
generic-drop-glue.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-exterior-box.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-exterior-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
generic-fn-box.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
generic-fn-infer.rs
generic-fn-twice.rs
generic-fn-unique.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
generic-fn.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-ivec-leak.rs test: Automatically remove all ~[T] from tests. 2014-03-21 23:37:21 +11:00
generic-ivec.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-newtype-struct.rs
generic-object.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
generic-recursive-tag.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-static-methods.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
generic-tag-corruption.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
generic-tag-local.rs
generic-tag-match.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-tag-values.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
generic-tag.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
generic-temporary.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
generic-tup.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
generic-type-synonym.rs
generic-type.rs
generic-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
getopts_ref.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
glob-std.rs Cleaned up os::consts. The module only exposes constants for the target OS and arch. 2014-04-25 00:38:05 -04:00
global-scope.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
guards-not-exhaustive.rs
guards.rs
hashmap-memory.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
hello.rs
html-literals.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
hygiene-dodging-1.rs
hygienic-labels-in-let.rs compiletest: Test --pretty expanded 2014-05-13 17:24:08 -07:00
hygienic-labels.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
i8-incr.rs
i32-sub.rs
if-bot.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
if-check.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
if-ret.rs
ifmt.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
ignore-all-the-things.rs
impl-implicit-trait.rs
impl-privacy-xc-1.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
impl-privacy-xc-2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import3.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
import4.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import5.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import6.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
import7.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
import8.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import-from.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import-glob-0.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import-glob-crate.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
import-in-block.rs Fix inner attribute syntax from #[foo]; to #![foo] 2014-04-04 13:22:57 -07:00
import-trailing-comma.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
infer-fn-tail-expr.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
inferred-suffix-in-pattern-range.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
infinite-loops.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
inherit-struct1.rs Allow inheritance between structs. 2014-04-20 13:41:18 +12:00
inherit-struct2.rs Allow inheritance between structs. 2014-04-20 13:41:18 +12:00
init-res-into-things.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
inner-attrs-on-impl.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
inner-module.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
inner-static.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
instantiable.rs
int.rs
integer-literal-radix.rs
integer-literal-suffix-inference.rs
intrinsic-alignment.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
intrinsic-atomics-cc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
intrinsic-atomics.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
intrinsic-move-val.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
intrinsic-uninit.rs
intrinsics-integer.rs Use the unsigned integer types for bitwise intrinsics. 2014-04-15 19:45:00 -07:00
intrinsics-math.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
invoke-external-foreign.rs Touch up and rebase previous commits 2014-05-13 17:24:08 -07:00
irrefutable-unit.rs
issue2170exe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue2378c.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue_3136_b.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue_9155.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-333.rs
issue-868.rs
issue-979.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-980.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-1112.rs
issue-1251.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-1257.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
issue-1451.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-1460.rs
issue-1516.rs Register new snapshots 2014-04-08 00:03:11 -07:00
issue-1660.rs
issue-1696.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-1701.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-1821.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
issue-1866.rs
issue-1974.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
issue-2074.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-2185.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-2190-1.rs Move task::task() to TaskBuilder::new() 2014-04-23 20:02:02 -07:00
issue-2190-2.rs test: Clean out the test suite a bit 2014-02-25 09:21:09 -08:00
issue-2214.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
issue-2216.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-2284.rs
issue-2288.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-2311-2.rs
issue-2311.rs
issue-2312.rs
issue-2316-c.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-2380-b.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-2383.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-2414-c.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-2428.rs
issue-2445-b.rs
issue-2445.rs
issue-2463.rs
issue-2472.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-2487-a.rs
issue-2502.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
issue-2526-a.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-2550.rs
issue-2611-3.rs Replace Freeze bounds with Share bounds 2014-03-20 10:16:55 +01:00
issue-2631-b.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-2633-2.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-2633.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
issue-2642.rs
issue-2708.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-2718.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
issue-2723-b.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-2734.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
issue-2735-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-2735-3.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-2735.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
issue-2748-a.rs
issue-2748-b.rs
issue-2804-2.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-2804.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
issue-2895.rs
issue-2904.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-2935.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-2936.rs
issue-2989.rs test: Make manual changes to deal with the fallout from removal of 2014-03-21 23:37:21 +11:00
issue-3012-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-3026.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-3037.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
issue-3052.rs syntax: Tweak parsing lifetime bounds on closures 2014-04-06 00:08:21 -07:00
issue-3091.rs
issue-3109.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-3121.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-3149.rs
issue-3186.rs
issue-3211.rs
issue-3220.rs
issue-3290.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-3389.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-3424.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-3429.rs
issue-3447.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-3500.rs
issue-3556.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-3559.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-3563-2.rs
issue-3563-3.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-3574.rs libcore: Remove all uses of ~str from libcore. 2014-05-22 14:42:02 -07:00
issue-3609.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
issue-3656.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-3683.rs
issue-3702.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
issue-3743.rs
issue-3753.rs
issue-3794.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-3847.rs rpass/cfail: Update field privacy where necessary 2014-03-31 15:47:36 -07:00
issue-3874.rs
issue-3878.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-3888-2.rs
issue-3895.rs
issue-3904.rs syntax: Tweak parsing lifetime bounds on closures 2014-04-06 00:08:21 -07:00
issue-3935.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
issue-3979-2.rs
issue-3979-generics.rs
issue-3979-xcrate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-3979.rs
issue-3991.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
issue-4016.rs Fix test issue-4016.rs with the json API change 2014-04-27 23:09:57 +02:00
issue-4025.rs
issue-4036.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-4107.rs
issue-4120.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
issue-4208.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-4228.rs
issue-4241.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
issue-4252.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-4333.rs
issue-4387.rs
issue-4401.rs
issue-4446.rs librustc: Try to resolve before coercions. 2014-06-03 15:38:04 -04:00
issue-4448.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
issue-4464.rs
issue-4541.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-4542.rs test: Clean out the test suite a bit 2014-02-25 09:21:09 -08:00
issue-4545.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-4734.rs rustc: Run destructors when dest=Ignore 2014-04-08 08:28:54 -07:00
issue-4735.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
issue-4759-1.rs
issue-4759.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-4830.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-4875.rs
issue-5008-borrowed-traitobject-method-call.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-5060.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-5192.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-5239-2.rs
issue-5243.rs
issue-5280.rs
issue-5315.rs
issue-5321-immediates-with-bare-self.rs
issue-5353.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-5518.rs test: Add tests for closed issues 2014-04-27 20:35:51 -07:00
issue-5521.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-5530.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-5550.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-5554.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
issue-5572.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
issue-5666.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-5688.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-5708.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
issue-5741.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-5754.rs
issue-5791.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
issue-5884.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-5900.rs
issue-5917.rs
issue-5950.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-5997.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
issue-6117.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-6128.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-6130.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-6153.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
issue-6157.rs Fix other bugs with new closure borrowing 2014-04-23 10:03:43 -07:00
issue-6318.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-6334.rs
issue-6341.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
issue-6344-let.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-6344-match.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-6449.rs syntax: Parse global paths in patterns 2014-05-20 20:28:00 -07:00
issue-6470.rs
issue-6557.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-6892.rs rustc: Run destructors when dest=Ignore 2014-04-08 08:28:54 -07:00
issue-6898.rs std: Move intrinsics to std::intrinsics. 2014-02-23 01:07:53 -08:00
issue-6919.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-7012.rs
issue-7178.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-7222.rs
issue-7320.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-7344.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-7519-match-unit-in-arg.rs
issue-7563.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
issue-7575.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
issue-7660.rs Move std::{trie, hashmap} to libcollections 2014-02-23 00:35:11 -08:00
issue-7663.rs test: Add a test for #7663 2014-04-10 15:21:59 -07:00
issue-7673-cast-generically-implemented-trait.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-7899.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-7911.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-8044.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-8171-default-method-self-inherit-builtin-trait.rs
issue-8248.rs
issue-8249.rs
issue-8259.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-8351-1.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-8351-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-8391.rs Fix #8391 2014-05-13 17:24:07 -07:00
issue-8398.rs
issue-8401.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-8498.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-8506.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
issue-8578.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
issue-8827.rs test: Add tests for closed issues 2014-04-27 20:35:51 -07:00
issue-8851.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-8860.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-8898.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
issue-8983.rs test: Add tests for closed issues 2014-04-27 20:35:51 -07:00
issue-9047.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-9110.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-9123.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-9129.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-9188.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-9259.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-9382.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-9394-inherited-trait-calls.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-9396.rs std: Make std::comm return types consistent 2014-04-10 21:41:19 -07:00
issue-9446.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-9719.rs test: Add some tests for closed issues 2014-03-06 10:45:08 -08:00
issue-9906.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-9918.rs
issue-9942.rs
issue-9968.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-10025.rs rustc: Enable writing "unsafe extern fn() {}" 2014-05-06 21:03:59 -07:00
issue-10028.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-10031.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-10228.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
issue-10392.rs
issue-10626.rs Process::new etc should support non-utf8 commands/args 2014-05-14 22:52:31 -07:00
issue-10638.rs
issue-10682.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-10683.rs test: Add tests for closed issues 2014-04-27 20:35:51 -07:00
issue-10714.rs core: Finish stabilizing the mem module. 2014-05-23 20:55:57 -07:00
issue-10718.rs
issue-10734.rs
issue-10763.rs test: Add a test for fixed issue #10763 2014-05-20 21:14:20 -07:00
issue-10764.rs test: Add tests for closed issue #10764 2014-06-02 09:24:03 -07:00
issue-10767.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-10802.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-10806.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-10853.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-11085.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-11224.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-11225-1.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-11225-2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-11267.rs Test fixes from rolling up PRs 2014-03-12 15:01:27 -07:00
issue-11508.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-11529.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-11552.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
issue-11577.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
issue-11709.rs
issue-11736.rs test: Add test for fixed issue #11736 2014-05-20 21:24:01 -07:00
issue-11881.rs lib{serialize, uuid}: Fix snake case errors. 2014-05-30 17:55:41 +01:00
issue-12133-1.rs rustc: Add some suppot for mixing rlibs and dylibs 2014-05-02 11:39:18 -07:00
issue-12133-2.rs rustc: Add some suppot for mixing rlibs and dylibs 2014-05-02 11:39:18 -07:00
issue-12133-3.rs rustc: Add some suppot for mixing rlibs and dylibs 2014-05-02 11:39:18 -07:00
issue-12582.rs _match.rs: prune sub-match tree too aggressively 2014-03-27 14:41:10 +08:00
issue-12612.rs rustc: Disallow importing through use statements 2014-04-10 15:22:00 -07:00
issue-12684.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-12699.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
issue-12860.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
issue-13027.rs Adjust codegen logic for range and guarded arms 2014-05-05 20:17:59 +08:00
issue-13204.rs Combine lifetime parameters when instantiating default methods 2014-04-17 00:38:54 +08:00
issue-13304.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-13494.rs native: Fix a race in select() 2014-04-15 19:45:00 -07:00
issue-13507-2.rs Fixes #13507 2014-04-14 17:39:52 -07:00
issue-13620.rs rustc: Crawl static initializers for reachability 2014-05-02 15:40:07 -07:00
issue-13763.rs rustc: Restrict the scope of a borrow on def_map 2014-04-25 14:45:12 -07:00
issue-13775.rs rustc: Don't die on 0-length pattern idents 2014-04-26 10:24:47 -07:00
issue-13867.rs Adjust codegen logic for range and guarded arms 2014-05-05 20:17:59 +08:00
issue-13872.rs rustc: Fix def ids of xcrate-reexported items 2014-04-30 19:24:21 -07:00
issue-14021.rs Fix deriving Encodable trait for unit structs 2014-06-02 07:46:32 +02:00
issue-14082.rs rustc: Fix shadowing private import with reexport 2014-05-15 15:32:15 -07:00
issue-14254.rs rustc: Better resolve errors for &T, &mut T, remove failure condition. 2014-05-20 01:08:05 +01:00
issue-14308.rs Add run-pass case for issue #14308 2014-05-20 19:52:24 -07:00
issue-14421.rs rustc: Account for typedefs in privacy 2014-05-27 09:04:08 -07:00
issue-14422.rs rustc: Account for typedefs in privacy 2014-05-27 09:04:08 -07:00
issue-14456.rs native: Ignore stdio fds with /dev/null 2014-05-27 17:49:31 -07:00
issue-14589.rs librustc: Try to resolve before coercions. 2014-06-03 15:38:04 -04:00
istr.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
item-attributes.rs Get "make check" to work with unused-attribute 2014-05-24 16:49:46 -07:00
item-name-overload.rs
iter-range.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
ivec-pass-by-value.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
ivec-tag.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
keyword-changes-2012-07-31.rs
kindck-implicit-close-over-mut-var.rs
kindck-owned-trait-contains-1.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
kinds-in-metadata.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
labeled-break.rs
lambda-infer-unresolved.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
lang-item-public.rs Fix some windows rpass tests 2014-04-07 09:29:42 -07:00
large-records.rs
last-use-in-block.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
last-use-in-cap-clause.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
last-use-is-capture.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
lazy-and-or.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
lazy-init.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
leak-box-as-tydesc.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
leak-tag-copy.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
leak-unique-as-tydesc.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
let-assignability.rs libcore: Remove all uses of ~str from libcore. 2014-05-22 14:42:02 -07:00
let-destruct-ref.rs libcore: Remove all uses of ~str from libcore. 2014-05-22 14:42:02 -07:00
let-var-hygiene.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
linear-for-loop.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
link-section.rs
linkage1.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
linkage-visibility.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
lint-cstack.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
lint-non-camel-case-types-non-uppercase-statics-unicode.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
lint-non-camel-case-with-trailing-underscores.rs
lint-non-uppercase-statics-lowercase-mut-statics.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
list.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
liveness-assign-imm-local-after-loop.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
liveness-assign-imm-local-after-ret.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
liveness-loop-break.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
liveness-move-in-loop.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
log_syntax-trace_macros-macro-locations.rs Remove ignore-fast that has cropped up 2014-04-06 15:55:43 -07:00
log-err-phi.rs libcore: Remove all uses of ~str from libcore. 2014-05-22 14:42:02 -07:00
log-knows-the-names-of-variants-in-std.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
log-knows-the-names-of-variants.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
log-poly.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
logging_before_rt_started.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
logging-enabled-debug.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
logging-enabled.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
logging-only-prints-once.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
logging-right-crate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
logging-separate-lines.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
long-while.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
loop-break-cont-1.rs
loop-break-cont.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
loop-diverges.rs
loop-scope.rs test: Automatically remove all ~[T] from tests. 2014-03-21 23:37:21 +11:00
macro-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
macro-attributes.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
macro-block-nonterminal.rs Allow $foo:block nonterminals in expression position 2014-05-25 22:33:12 -07:00
macro-crate-def-only.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
macro-export-inner-module.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
macro-interpolation.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
macro-local-data-key.rs std: Modernize the local_data api 2014-05-07 23:43:39 -07:00
macro-meta-items.rs Remove ignore-fast that has cropped up 2014-04-06 15:55:43 -07:00
macro-multiple-items.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
macro-pat.rs Test pattern macros 2014-05-28 12:42:21 -07:00
macro-path.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
macro-stmt.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
macro-with-attrs1.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
macro-with-attrs2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
macro-with-braces-in-expr-position.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
match-borrowed_str.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
match-bot-2.rs
match-bot.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
match-enum-struct-0.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
match-enum-struct-1.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
match-implicit-copy-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
match-in-macro.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
match-join.rs test: Automatically remove all ~[T] from tests. 2014-03-21 23:37:21 +11:00
match-naked-record-expr.rs
match-naked-record.rs
match-path.rs
match-pattern-lit.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
match-pattern-no-type-params.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
match-pattern-simple.rs
match-phi.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
match-pipe-binding.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
match-range-static.rs
match-range.rs
match-ref-binding-in-guard-3256.rs
match-ref-binding-mut-option.rs
match-ref-binding-mut.rs
match-ref-binding.rs
match-static-const-rename.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
match-str.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
match-struct-0.rs
match-tag.rs
match-unique-bind.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
match-value-binding-in-guard-3291.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
match-vec-rvalue.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
match-with-ret-arm.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
max-min-classes.rs
method-attributes.rs Get "make check" to work with unused-attribute 2014-05-24 16:49:46 -07:00
mid-path-type-params.rs
mlist.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
mod_dir_implicit.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
mod_dir_path2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
mod_dir_path3.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
mod_dir_path_multi.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
mod_dir_path.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
mod_dir_recursive.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
mod_dir_simple.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
mod_file_aux.rs
mod_file_with_path_attr.rs
mod_file.rs
mod-inside-fn.rs
mod-view-items.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
module-qualified-struct-destructure.rs rpass/cfail: Update field privacy where necessary 2014-03-31 15:47:36 -07:00
monad.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
monomorphize-abi-alignment.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
monomorphized-callees-with-ty-params-3314.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
morestack1.rs
morestack2.rs
morestack3.rs
morestack4.rs
morestack5.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
morestack6.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
move-1-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
move-1.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
move-2-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
move-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
move-3-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
move-3.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
move-4-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
move-4.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
move-arg-2-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
move-arg-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
move-arg.rs
move-nullary-fn.rs
move-out-of-field.rs core: rename strbuf::StrBuf to string::String 2014-05-24 21:48:10 -07:00
move-scalar.rs
move-self.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
moves-based-on-type-capture-clause.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
moves-based-on-type-cross-crate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
multi-let.rs
multibyte.rs
multiline-comment.rs
multiple-trait-bounds.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
mut-function-arguments.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
mut-in-ident-patterns.rs
mut-vstore-expr.rs
mutability-inherits-through-fixed-length-vec.rs
mutable-alias-vec.rs test: Make manual changes to deal with the fallout from removal of 2014-03-21 23:37:21 +11:00
mutable-vec-drop.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
mutual-recursion-group.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
native-always-waits.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
native-print-no-runtime.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
negative.rs
nested_item_main.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
nested-block-comment.rs
nested-class.rs
nested-enum-same-names.rs
nested-exhaustive-match.rs
nested-function-names-issue-8587.rs
nested-matchs.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
nested-pattern.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
nested-patterns.rs
new-box-syntax.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
new-box.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
new-impl-syntax.rs Updates with core::fmt changes 2014-05-15 23:22:06 -07:00
new-import-syntax.rs
new-style-constants.rs
new-style-fixed-length-vec.rs
newlambdas-ret-infer2.rs
newlambdas-ret-infer.rs
newlambdas.rs
newtype-polymorphic.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
newtype-struct-drop-run.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
newtype-struct-with-dtor.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
newtype-struct-xc-2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
newtype-struct-xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
newtype-temporary.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
newtype.rs All uses of extern fn should mean extern "C" fn. Closes #9309. 2014-02-24 13:24:57 +13:00
nil-decl-in-foreign.rs Remove remaining nolink usages.(fixes #12810) 2014-03-12 15:01:25 -07:00
nil-pattern.rs
no-landing-pads.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
no-std-xcrate2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
no-std-xcrate.rs
non-legacy-modes.rs
nul-characters.rs
nullable-pointer-ffi-compat.rs Make some NullablePointer enums FFI-compatible with the base pointer type. 2014-05-16 17:24:49 -04:00
nullable-pointer-iotareduction.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
nullable-pointer-size.rs test: Remove all uses of ~str from the test suite. 2014-05-14 14:58:00 -07:00
nullary-or-pattern.rs
numeric-method-autoexport.rs Touch up and rebase previous commits 2014-05-13 17:24:08 -07:00
objects-coerce-freeze-borrored.rs
objects-owned-object-borrowed-method-header.rs Touch up and rebase previous commits 2014-05-13 17:24:08 -07:00
objects-owned-object-borrowed-method-headerless.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
objects-owned-object-owned-method.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
once-move-out-on-heap.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
once-move-out-on-stack.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
one-tuple.rs
opeq.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
operator-associativity.rs
operator-overloading.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
option-ext.rs libcore: Remove all uses of ~str from libcore. 2014-05-22 14:42:02 -07:00
option-unwrap.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
or-pattern.rs
osx-frameworks.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
out-of-stack.rs Process::new etc should support non-utf8 commands/args 2014-05-14 22:52:31 -07:00
output-slot-variants.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
over-constrained-vregs.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
overload-index-operator.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
overloaded-autoderef-count.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
overloaded-autoderef-indexing.rs Region + borrow checker support and tests for overloaded autoderef. 2014-03-13 14:21:46 +02:00
overloaded-autoderef-order.rs rpass/cfail: Update field privacy where necessary 2014-03-31 15:47:36 -07:00
overloaded-autoderef-vtable.rs Implement vtable support for autoderef. 2014-03-22 23:31:42 +02:00
overloaded-autoderef-xcrate.rs Remove ignore-fast that has cropped up 2014-04-06 15:55:43 -07:00
overloaded-autoderef.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
overloaded-deref-count.rs rename std::vec_ng -> std::vec 2014-03-20 04:25:32 -04:00
overloaded-deref.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
owned-implies-static.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
packed-struct-borrow-element.rs
packed-struct-generic-layout.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
packed-struct-generic-size.rs test: Remove all uses of ~str from the test suite. 2014-05-14 14:58:00 -07:00
packed-struct-layout.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
packed-struct-match.rs
packed-struct-size-xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
packed-struct-size.rs test: Remove all uses of ~str from the test suite. 2014-05-14 14:58:00 -07:00
packed-struct-vec.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
packed-tuple-struct-layout.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
packed-tuple-struct-size.rs test: Remove all uses of ~str from the test suite. 2014-05-14 14:58:00 -07:00
parameterized-trait-with-bounds.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
paren-free.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
parse-fail.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
pass-by-copy.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
path.rs
pattern-bound-var-in-for-each.rs
pattern-in-closure.rs
phase-use-ignored.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
placement-new-arena.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
pred-not-bool.rs
preempt.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
priv-impl-prim-ty.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
privacy1.rs
privacy-ns.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
privacy-reexport.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
private-class-field.rs
private-method.rs
proc-bounds.rs Register new snapshots 2014-04-08 00:03:11 -07:00
process-detach.rs Process::new etc should support non-utf8 commands/args 2014-05-14 22:52:31 -07:00
process-spawn-with-unicode-params.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
pub_use_mods_xcrate_exe.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
pub-extern-privacy.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
pub-use-xcrate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
pure-sum.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
purity-infer.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
quad-precision-float.rs add support for quadruple precision floating point 2014-04-22 20:47:28 -04:00
raw-str.rs
rcvr-borrowed-to-region.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
rcvr-borrowed-to-slice.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
readalias.rs
rec-align-u32.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
rec-align-u64.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
rec-auto.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
rec-extend.rs
rec-tup.rs
rec.rs
record-pat.rs
reexport-should-still-link.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
reexport-star.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
reexported-static-methods-cross-crate.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
reflect-visit-type.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
regions-addr-of-interior-of-unique-box.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
regions-addr-of-ret.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
regions-borrow-at.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
regions-borrow-evec-fixed.rs
regions-borrow-evec-uniq.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
regions-borrow-uniq.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
regions-bot.rs
regions-bound-lists-feature-gate.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
regions-copy-closure.rs syntax: Tweak parsing lifetime bounds on closures 2014-04-06 00:08:21 -07:00
regions-creating-enums2.rs
regions-creating-enums5.rs
regions-dependent-addr-of.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
regions-dependent-autofn.rs syntax: Tweak parsing lifetime bounds on closures 2014-04-06 00:08:21 -07:00
regions-dependent-autoslice.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
regions-dependent-let-ref.rs
regions-early-bound-lifetime-in-assoc-fn.rs
regions-early-bound-trait-param.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
regions-early-bound-used-in-bound-method.rs Add proper support for early/late distinction for lifetime bindings. 2014-03-12 08:05:28 +01:00
regions-early-bound-used-in-bound.rs Add proper support for early/late distinction for lifetime bindings. 2014-03-12 08:05:28 +01:00
regions-early-bound-used-in-type-param.rs Add proper support for early/late distinction for lifetime bindings. 2014-03-12 08:05:28 +01:00
regions-escape-into-other-fn.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
regions-expl-self.rs
regions-fn-subtyping-2.rs
regions-fn-subtyping.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
regions-infer-bivariance.rs
regions-infer-borrow-scope-addr-of.rs
regions-infer-borrow-scope-view.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
regions-infer-borrow-scope-within-loop-ok.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
regions-infer-borrow-scope.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
regions-infer-call-2.rs
regions-infer-call.rs
regions-infer-contravariance-due-to-ret.rs
regions-lifetime-static-items-enclosing-scopes.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
regions-mock-tcx.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
regions-mock-trans.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
regions-no-variance-from-fn-generics.rs Regression test. 2014-04-17 11:42:30 +02:00
regions-nullary-variant.rs
regions-params.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
regions-return-interior-of-option.rs
regions-self-impls.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
regions-self-in-enums.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
regions-simple.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
regions-static-closure.rs syntax: Tweak parsing lifetime bounds on closures 2014-04-06 00:08:21 -07:00
regions-variance-contravariant-use-contravariant.rs
regions-variance-covariant-use-covariant.rs
rename-directory.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
repeat-expr-in-static.rs std: Change assert_eq!() to use {} instead of {:?} 2014-02-28 23:01:54 -08:00
repeated-vector-syntax.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
resolve-issue-2428.rs
resource-assign-is-not-copy.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
resource-destruct.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
resource-in-struct.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
ret-bang.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
ret-none.rs
return-from-closure.rs
return-nil.rs
running-with-no-runtime.rs std: Improve non-task-based usage 2014-06-04 11:13:12 -07:00
self-in-mut-slot-default-method.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
self-in-mut-slot-immediate-value.rs
self-re-assign.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
self-shadowing-import.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
self-type-param.rs
send_str_hashmap.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
send_str_treemap.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
send-resource.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
send-type-inference.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
sendable-class.rs std: Rename Chan/Port types and constructor 2014-03-13 13:23:29 -07:00
sendfn-is-a-block.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
sendfn-spawn-with-fn-arg.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
seq-compare.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
shadow.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
shape_intrinsic_tag_then_rec.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
shebang.rs compiletest: Test --pretty expanded 2014-05-13 17:24:08 -07:00
shift.rs
signal-exit-status.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
signed-shift-const-eval.rs
sigpipe-should-be-ignored.rs Process::new etc should support non-utf8 commands/args 2014-05-14 22:52:31 -07:00
simd-binop.rs std: Move simd to core::simd and reexport. #1457 2014-05-23 15:27:48 -07:00
simd-generics.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
simd-issue-10604.rs std: Move simd to core::simd and reexport. #1457 2014-05-23 15:27:48 -07:00
simd-type.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
simple-generic-match.rs
simple-generic-tag.rs
simple-infer.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
simple-match-generic-tag.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
size-and-align.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
sized-borrowed-pointer.rs
sized-owned-pointer.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
small-enum-range-edge.rs
small-enums-with-fields.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
smallest-hello-world.rs rustc: Add official support for weak failure 2014-05-19 11:04:44 -07:00
spawn2.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
spawn-fn.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
spawn-types.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
spawn.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
spawning-with-debug.rs Move task::task() to TaskBuilder::new() 2014-04-23 20:02:02 -07:00
stable-addr-of.rs
stat.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
static-assert.rs
static-fn-inline-xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
static-fn-trait-xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
static-function-pointer-xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
static-function-pointer.rs All uses of extern fn should mean extern "C" fn. Closes #9309. 2014-02-24 13:24:57 +13:00
static-impl.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
static-method-in-trait-with-tps-intracrate.rs
static-method-xcrate.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
static-methods-in-traits2.rs
static-methods-in-traits.rs
static-mut-foreign.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
static-mut-xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
str-concat.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
str-idx.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
str-multiline.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
string-self-append.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
struct_variant_xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
struct-destructuring-cross-crate.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
struct-like-variant-construct.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
struct-like-variant-match.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
struct-lit-functional-no-fields.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
struct-literal-dtor.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
struct-new-as-field-name.rs
struct-order-of-eval-1.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
struct-order-of-eval-2.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
struct-pattern-matching.rs
struct-return.rs test: Enable #9205-related tests on windows 2014-06-02 12:08:19 +09:00
structured-compare.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
super-fast-paren-parsing.rs libcore: Remove all uses of ~str from libcore. 2014-05-22 14:42:02 -07:00
super.rs
supertrait-default-generics.rs
supported-cast.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00
svh-add-comment.rs Some basic acceptance tests for better SVH. 2014-05-15 11:09:26 +02:00
svh-add-doc.rs Some basic acceptance tests for better SVH. 2014-05-15 11:09:26 +02:00
svh-add-macro.rs Some basic acceptance tests for better SVH. 2014-05-15 11:09:26 +02:00
svh-add-nothing.rs Some basic acceptance tests for better SVH. 2014-05-15 11:09:26 +02:00
svh-add-redundant-cfg.rs Some basic acceptance tests for better SVH. 2014-05-15 11:09:26 +02:00
svh-add-whitespace.rs Some basic acceptance tests for better SVH. 2014-05-15 11:09:26 +02:00
swap-1.rs
swap-2.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
swap-overlapping.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
syntax-extension-bytes.rs
syntax-extension-cfg.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
syntax-extension-source-utils.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
tag-align-dyn-u64.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
tag-align-dyn-variants.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
tag-align-shape.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
tag-align-u64.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
tag-disr-val-shape.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
tag-exports.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
tag-in-block.rs
tag-variant-disr-type-mismatch.rs
tag-variant-disr-val.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
tag.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
tail-call-arg-leak.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
tail-cps.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
tail-direct.rs
task-comm-0.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
task-comm-1.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
task-comm-3.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
task-comm-4.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
task-comm-5.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
task-comm-6.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
task-comm-7.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
task-comm-9.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
task-comm-10.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
task-comm-11.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
task-comm-12.rs Move task::task() to TaskBuilder::new() 2014-04-23 20:02:02 -07:00
task-comm-13.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
task-comm-14.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
task-comm-15.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
task-comm-16.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
task-comm-17.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
task-comm-chan-nil.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
task-life-0.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
task-spawn-move-and-copy.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
tcp-connect-timeouts.rs libstd: Remove ~str from all libstd modules except fmt and str. 2014-05-22 14:42:01 -07:00
tcp-stress.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
tempfile.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
terminate-in-initializer.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
test-ignore-cfg.rs libstd: Remove ~str from all libstd modules except fmt and str. 2014-05-22 14:42:01 -07:00
test-runner-hides-main.rs compiletest: Test --pretty expanded 2014-05-13 17:24:08 -07:00
threads.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
trailing-comma.rs
trait-bounds-basic.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
trait-bounds-in-arc.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
trait-bounds-recursion.rs
trait-bounds.rs
trait-cast-generic.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
trait-cast.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
trait-coercion-generic.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
trait-coercion.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
trait-composition-trivial.rs
trait-default-method-bound-subst2.rs
trait-default-method-bound-subst3.rs
trait-default-method-bound-subst4.rs
trait-default-method-bound-subst.rs
trait-default-method-bound.rs
trait-default-method-xc-2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
trait-default-method-xc.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
trait-generic.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
trait-inheritance2.rs
trait-inheritance-auto-xc-2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
trait-inheritance-auto-xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
trait-inheritance-auto.rs
trait-inheritance-call-bound-inherited2.rs
trait-inheritance-call-bound-inherited.rs
trait-inheritance-cast-without-call-to-supertrait.rs
trait-inheritance-cast.rs
trait-inheritance-cross-trait-call-xc.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
trait-inheritance-cross-trait-call.rs
trait-inheritance-diamond.rs
trait-inheritance-multiple-inheritors.rs
trait-inheritance-multiple-params.rs
trait-inheritance-num0.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
trait-inheritance-num1.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
trait-inheritance-num2.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
trait-inheritance-num3.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
trait-inheritance-num5.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
trait-inheritance-num.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
trait-inheritance-overloading-simple.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
trait-inheritance-overloading-xc-exe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
trait-inheritance-overloading.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
trait-inheritance-self-in-supertype.rs
trait-inheritance-self.rs
trait-inheritance-simple.rs
trait-inheritance-static2.rs
trait-inheritance-static.rs
trait-inheritance-subst2.rs
trait-inheritance-subst.rs
trait-inheritance-visibility.rs
trait-object-generics.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
trait-region-pointer-simple.rs
trait-static-method-overwriting.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
trait-to-str.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
trait-typedef-cc.rs
trait-with-bounds-default.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
traits-default-method-macro.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
traits-default-method-mut.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
traits-default-method-self.rs
traits-default-method-trivial.rs
trans-tag-static-padding.rs Append missing padding after last field of struct 2014-04-12 18:56:34 +00:00
transmute-non-immediate-to-immediate.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
trivial-message.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
tup.rs
tuple-struct-construct.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
tuple-struct-constructor-pointer.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
tuple-struct-destructuring.rs
tuple-struct-matching.rs
tuple-struct-trivial.rs
tydesc-name.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
type-in-nested-module.rs
type-namespace.rs
type-param-constraints.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
type-param.rs
type-params-in-for-each.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
type-ptr.rs
type-sizes.rs
type-use-i1-versus-i8.rs core: Stabilize the mem module 2014-05-20 23:06:54 -07:00
typeck_type_placeholder_1.rs Removing imports of std::vec_ng::Vec 2014-03-20 09:30:14 -07:00
typeck-macro-interaction-issue-8852.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
typeclasses-eq-example-static.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
typeclasses-eq-example.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
typeid-intrinsic.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
typestate-cfg-nesting.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
typestate-multi-decl.rs
u8-incr-decr.rs
u8-incr.rs
u32-decr.rs
uint.rs
unary-minus-suffix-inference.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
unfold-cross-crate.rs
unify-return-ty.rs core: Remove the cast module 2014-05-11 01:13:02 -07:00
uninit-empty-types.rs core: Finish stabilizing the mem module. 2014-05-23 20:55:57 -07:00
uniq-cc-generic.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
uniq-cc.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
uniq-self-in-mut-slot.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-assign-copy.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-assign-drop.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-assign-generic.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-assign.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-autoderef-field.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-autoderef-index.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-cmp.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-containing-tag.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-create.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-decl-init-copy.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-decl-init.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-decl-move-temp.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-decl-move.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-decl.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-deref.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-destructure.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-drop-complex.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-fn-arg-move.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-fn-arg-mut.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-fn-arg.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-fn-ret.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-generic-assign.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-in-tag.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
unique-in-vec-copy.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-in-vec.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-init.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-kinds.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
unique-log.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
unique-match-discrim.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-move-drop.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-move-temp.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-move.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-mutable.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-object-move.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-pat-2.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-pat-3.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
unique-pat.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-rec.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-send-2.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-send.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unique-swap.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unit-like-struct-drop-run.rs std: Move the owned module from core to std 2014-05-13 17:24:07 -07:00
unit-like-struct.rs
unit.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
unnamed_argument_mode.rs
unreachable-code-1.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
unreachable-code.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
unsafe-fn-called-from-unsafe-blk.rs
unsafe-fn-called-from-unsafe-fn.rs
unsafe-pointer-assignability.rs
unsized2.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unsized.rs Check for unsized types in enums. 2014-04-23 12:30:58 +12:00
unused-move-capture.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unused-move.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
unwind-box.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
unwind-resource2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
unwind-resource.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
unwind-unique.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
use_inline_dtor.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
use-crate-name-alias.rs extra: Put the nail in the coffin, delete libextra 2014-03-14 13:59:02 -07:00
use-import-export.rs
use-trait-before-def.rs
use-uninit-match2.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
use-uninit-match.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
use.rs Add the patch number to version strings. Closes #13289 2014-05-12 19:52:29 -07:00
utf8_chars.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
utf8_idents.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
utf8-bom.rs libsyntax: librustdoc: ignore utf-8 BOM in .rs files 2014-03-18 13:49:11 -07:00
utf8.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
variadic-ffi.rs Register new snapshots 2014-05-09 21:13:02 -07:00
variant-attributes.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
variant-structs-trivial.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
vec-concat.rs vec: convert append and append_one to methods 2014-03-31 01:13:48 -04:00
vec-drop.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
vec-fixed-length.rs rustllvm: Add LLVMRustArrayType 2014-05-13 17:24:08 -07:00
vec-growth.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
vec-late-init.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
vec-macro-with-brackets.rs syntax: allow stmt/expr macro invocations to be delimited by []. 2014-03-31 22:42:31 -07:00
vec-macro-with-trailing-comma.rs std: make vec!() macro handle a trailing comma 2014-04-08 00:03:12 -07:00
vec-matching-autoslice.rs std: Change assert_eq!() to use {} instead of {:?} 2014-02-28 23:01:54 -08:00
vec-matching-fixed.rs
vec-matching-fold.rs
vec-matching-legal-tail-element-borrow.rs
vec-matching.rs
vec-push.rs test: Automatically remove all ~[T] from tests. 2014-03-21 23:37:21 +11:00
vec-repeat-with-cast.rs
vec-slice-drop.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
vec-slice.rs test: Automatically remove all ~[T] from tests. 2014-03-21 23:37:21 +11:00
vec-tail-matching.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
vec-to_str.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
vec.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
vector-no-ann-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
vector-sort-failure-safe.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
warn-ctypes-inhibit.rs Fix inner attribute syntax from #[foo]; to #![foo] 2014-04-04 13:22:57 -07:00
weak-lang-item.rs rustc: Add official support for weak failure 2014-05-19 11:04:44 -07:00
weird-exprs.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
while-cont.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
while-flow-graph.rs
while-loop-constraints-2.rs Use new attribute syntax in python files in src/etc too (#13478) 2014-04-14 21:00:31 +05:30
while-prelude-drop.rs std: Rename {Eq,Ord} to Partial{Eq,Ord} 2014-05-30 15:52:24 -07:00
while-with-break.rs Remove outdated and unnecessary std::vec_ng::Vec imports. 2014-03-22 01:08:57 +11:00
while.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
writealias.rs
x86stdcall2.rs
x86stdcall.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
xcrate-address-insignificant.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
xcrate-static-addresses.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
xcrate-trait-lifetime-param.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
xcrate-unit-struct.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
yield1.rs Move task::task() to TaskBuilder::new() 2014-04-23 20:02:02 -07:00
yield2.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
yield.rs Move task::task() to TaskBuilder::new() 2014-04-23 20:02:02 -07:00
zero-size-type-destructors.rs