rust/src/test/run-pass
Niko Matsakis 662232c8f6 Rewrite match algorithm to avoid massive blowup in generated code for
large matches that fallback to Eq. When we encounter a case where the
test being performed does not inform the candidate at all, we just stop
testing the candidates at that point, rather than adding the candidate
to both outcomes. The former behavior was not WRONG, but it generated a
lot of code, whereas this new behavior degenerates to an if-else-if
tree.

Fixes #29740.
2015-11-11 16:38:58 -05:00
..
foreign-mod-src
foreign-src
mod_dir_implicit_aux Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
mod_dir_simple Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
module-polymorphism3-files/float-template
syntax-extension-source-utils-files Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
.gitattributes syntax: Handle \r\n in byte string literals 2014-08-05 17:02:55 -07:00
alias-uninit-value.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
alignment-gep-tup-like-1.rs fallout: run-pass tests that use box. (many could be ported to Box::new instead in the future.) 2015-01-08 02:31:37 +01:00
alloca-from-derived-tydesc.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
allocator-default.rs disable jemalloc tests for openbsd 2015-09-12 17:33:18 +02:00
allocator-jemalloc.rs disable jemalloc tests for openbsd 2015-09-12 17:33:18 +02:00
allocator-override.rs Update LLVM to fix nightly build failures 2015-09-11 17:40:37 +02:00
allocator-system.rs rustc: Allow changing the default allocator 2015-08-14 15:13:10 -07:00
anon-extern-mod-cross-crate-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
anon-extern-mod.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
anon-trait-static-method.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
anon_trait_static_method_exe.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
argument-passing.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
arith-0.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
arith-1.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
arith-2.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
arith-unsigned.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
arr_cycle.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
artificial-block.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
as-precedence.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
asm-concat-src.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
asm-in-out-operand.rs rustc: Update LLVM 2015-06-16 22:56:42 -07:00
asm-indirect-memory.rs Add test for inline asm indirect memory operands 2015-11-03 18:13:03 +00:00
asm-out-assign.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
assert-eq-macro-success.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
assign-assign.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
assignability-trait.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
associated-const-cross-crate-defaults.rs Feature-gate associated constants. 2015-04-23 21:02:29 -06:00
associated-const-cross-crate.rs Feature-gate associated constants. 2015-04-23 21:02:29 -06:00
associated-const-in-global-const.rs Feature-gate associated constants. 2015-04-23 21:02:29 -06:00
associated-const-inherent-impl.rs Feature-gate associated constants. 2015-04-23 21:02:29 -06:00
associated-const-marks-live-code.rs Feature-gate associated constants. 2015-04-23 21:02:29 -06:00
associated-const-match-patterns.rs Allow T::C syntax in match patterns to refer to trait-assosociated constants. 2015-05-13 17:39:16 -06:00
associated-const-overwrite-default.rs Remove obsolete "MarkerTrait" from tests. 2015-04-24 22:58:40 -06:00
associated-const-public-impl.rs Remove obsolete "MarkerTrait" from tests. 2015-04-24 22:58:40 -06:00
associated-const-range-match-patterns.rs Fix issue where trait-associated consts could cause ICEs in match patterns. 2015-05-17 15:30:32 -06:00
associated-const-resolution-order.rs Remove obsolete "MarkerTrait" from tests. 2015-04-24 22:58:40 -06:00
associated-const-self-type.rs Remove obsolete "MarkerTrait" from tests. 2015-04-24 22:58:40 -06:00
associated-const-ufcs-infer-trait.rs Remove obsolete "MarkerTrait" from tests. 2015-04-24 22:58:40 -06:00
associated-const-use-default.rs Remove obsolete "MarkerTrait" from tests. 2015-04-24 22:58:40 -06:00
associated-const-use-impl-of-same-trait.rs Remove obsolete "MarkerTrait" from tests. 2015-04-24 22:58:40 -06:00
associated-const.rs Remove obsolete "MarkerTrait" from tests. 2015-04-24 22:58:40 -06:00
associated-item-long-paths.rs Fix use of UFCS syntax to call methods on associated types. 2015-05-07 01:57:54 -06:00
associated-types-basic.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
associated-types-binding-in-trait.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-binding-in-where-clause.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
associated-types-bound.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-cc.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
associated-types-conditional-dispatch.rs Removed many pointless calls to *iter() and iter_mut() 2015-06-10 21:14:03 +01:00
associated-types-constant-type.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-doubleendediterator-object.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-duplicate-binding-in-env-hrtb.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-duplicate-binding-in-env.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-enum-field-named.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-enum-field-numbered.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-eq-obj.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-impl-redirect.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
associated-types-in-default-method.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-in-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-in-impl-generics.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-in-inherent-method.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-issue-20220.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-issue-20371.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
associated-types-issue-21212.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-iterator-binding.rs Removed many pointless calls to *iter() and iter_mut() 2015-06-10 21:14:03 +01:00
associated-types-method.rs Make impl-trait-ref associated types work in methods 2015-06-15 18:27:35 +03:00
associated-types-nested-projections.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
associated-types-normalize-in-bounds-binding.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
associated-types-normalize-in-bounds-ufcs.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-normalize-in-bounds.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-normalize-unifield-struct.rs Fallout in tests 2015-04-01 11:22:39 -04:00
associated-types-project-from-type-param-via-bound-in-where-clause.rs add const_fn features 2015-05-29 09:42:54 -04:00
associated-types-projection-bound-in-supertraits.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
associated-types-projection-from-known-type-in-impl.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-projection-in-object-type.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-projection-in-supertrait.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-projection-in-where-clause.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-projection-to-unrelated-trait.rs Fallout in tests -- break test into a run-pass and compile-fail component 2015-08-12 17:58:56 -04:00
associated-types-qualified-path-with-trait-with-type-parameters.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-ref-from-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-ref-in-struct-literal.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-region-erasure-issue-20582.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
associated-types-resolve-lifetime.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
associated-types-return.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
associated-types-simple.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-stream.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-struct-field-named.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-struct-field-numbered.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-sugar-path.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
associated-types-where-clause-impl-ambiguity.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
astconv-cycle-between-trait-and-type.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
atomic-print.rs print the unexpected character 2015-11-08 13:36:36 -05:00
attr-before-view-item.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
attr-before-view-item2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
attr-main-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
attr-main.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
attr-mix-new.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
attr-no-drop-flag-size.rs Register new snapshots 2015-04-28 17:23:45 -07:00
attr-shebang.rs Remove ignore-fast that has cropped up 2014-04-06 15:55:43 -07:00
attr-start.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
attr.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
augmented-assignments.rs Overloaded augmented assignments 2015-09-18 21:20:15 -05:00
auto-instantiate.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
auto-loop.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
auto-ref-bounded-ty-param.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
auto-ref-sliceable.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
auto-ref.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
autobind.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
autoderef-and-borrow-method-receiver.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
autoderef-method-on-trait.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
autoderef-method-priority.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
autoderef-method-twice-but-not-thrice.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
autoderef-method-twice.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
autoderef-method.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
autoref-intermediate-types-issue-3585.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
backtrace-debuginfo-aux.rs Add line numbers to MSVC backtrace 2015-09-05 00:56:53 +01:00
backtrace-debuginfo.rs Add line numbers to MSVC backtrace 2015-09-05 00:56:53 +01:00
backtrace.rs Add line numbers to windows-gnu backtraces 2015-09-04 01:25:15 +01:00
bare-fn-implements-fn-mut.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
bare-static-string.rs
big-literals.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
binary-heap-panic-safe.rs Add missing stability markings to BinaryHeap. 2015-09-01 01:22:57 -07:00
binary-minus-without-space.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
bind-by-move.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
bind-field-short-with-modifiers.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
binops-issue-22743.rs Fallout in tests 2015-04-01 11:22:39 -04:00
binops.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
bitwise.rs partial set of fixes for fallout in tests/run-pass 2015-04-02 01:09:05 +02:00
blind-item-mixed-crate-use-item.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
blind-item-mixed-use-item.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
block-arg-call-as.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
block-arg.rs for x in xs.iter() -> for x in &xs 2015-02-02 13:40:18 -05:00
block-explicit-types.rs Require braces when a closure has an explicit return type. This is a 2015-03-18 20:07:27 -04:00
block-expr-precedence.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
block-fn-coerce.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
block-iter-1.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
block-iter-2.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
bool-not.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
bool.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
borrow-by-val-method-receiver.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrow-tuple-fields.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-assign-to-subfield.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowck-binding-mutbl.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowck-borrow-from-expr-block.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-borrow-of-mut-base-ptr-safe.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowck-closures-two-imm.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-field-sensitivity.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowck-fixed-length-vecs.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-freeze-frozen-mut.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-lend-args.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowck-macro-interaction-issue-6304.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-move-by-capture-ok.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-mut-uniq.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowck-mut-vec-as-imm-slice.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-pat-enum.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowck-pat-reassign-no-binding.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-rvalues-mutable.rs Minor code cleanup. 2015-09-28 19:21:18 -06:00
borrowck-scope-of-deref-issue-4666.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-static-item-in-fn.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
borrowck-trait-lifetime.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
borrowck-uniq-via-ref.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowck-univariant-enum.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowck-use-mut-borrow.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
borrowed-ptr-pattern-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowed-ptr-pattern-3.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowed-ptr-pattern-infallible.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowed-ptr-pattern-option.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
borrowed-ptr-pattern.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
box-new.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
box-of-array-of-drop-1.rs add const_fn features 2015-05-29 09:42:54 -04:00
box-of-array-of-drop-2.rs add const_fn features 2015-05-29 09:42:54 -04:00
break-value.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
break.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
bug-7183-generics.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
bug-7295.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
builtin-superkinds-capabilities-transitive.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
builtin-superkinds-capabilities-xc.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
builtin-superkinds-capabilities.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
builtin-superkinds-in-metadata.rs Fallout in tests 2015-04-01 11:22:39 -04:00
builtin-superkinds-phantom-typaram.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
builtin-superkinds-self-type.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
builtin-superkinds-simple.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
builtin-superkinds-typaram.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
by-value-self-in-mut-slot.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
byte-literals.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
c-stack-as-value.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
c-stack-returning-int64.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
call-closure-from-overloaded-op.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
can-copy-pod.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cancel-clean-via-immediate-rvalue-ref.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
capture-clauses-boxed-closures.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
capture-clauses-unboxed-closures.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cast-in-array-size.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
cast-region-to-uint.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
cast-rfc0401-vtable-kinds.rs Prohibit casts between fat pointers to different traits 2015-06-18 15:51:06 +03:00
cast-rfc0401.rs address review comments 2015-06-19 17:10:26 +03:00
cast.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cci_borrow.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
cci_capture_clause.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cci_impl_exe.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
cci_iter_exe.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
cci_nested_exe.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cci_no_inline_exe.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
cell-does-not-clone.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cfg-attr-cfg.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cfg-attr-crate.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cfg-family.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cfg-in-crate-1.rs rustc: Process #[cfg]/#[cfg_attr] on crates 2014-11-07 12:04:28 -08:00
cfg-macros-foo.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cfg-macros-notfoo.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cfg-match-arm.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cfg-target-family.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cfg-target-vendor.rs rustc: Add target_vendor for target triples 2015-09-24 01:44:55 +02:00
cfg_attr.rs std: Rename Show/String to Debug/Display 2015-01-20 22:36:13 -08:00
cfg_inner_static.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cfgs-on-items.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
char.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
check-static-mut-slices.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
check-static-recursion-foreign.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
check-static-slice.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
child-outlives-parent.rs std: Clean out #[deprecated] APIs 2015-03-31 15:49:57 -07:00
class-attributes-1.rs Add custom_attribute gate to tests which need them 2015-02-16 11:49:09 +05:30
class-attributes-2.rs Add custom_attribute gate to tests which need them 2015-02-16 11:49:09 +05:30
class-cast-to-trait-cross-crate-2.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
class-cast-to-trait-multiple-types.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
class-cast-to-trait.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
class-dtor.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
class-exports.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
class-impl-very-parameterized-trait.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
class-implement-trait-cross-crate.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
class-implement-traits.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
class-method-cross-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
class-methods-cross-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
class-methods.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
class-poly-methods-cross-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
class-poly-methods.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
class-separate-impl.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
class-str-field.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
class-typarams.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
classes-cross-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
classes-self-referential.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
classes-simple-cross-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
classes-simple-method.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
classes-simple.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
classes.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
cleanup-arm-conditional.rs Use https URLs to refer to rust-lang.org where appropriate. 2015-08-09 14:28:46 -07:00
cleanup-rvalue-during-if-and-while.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cleanup-rvalue-for-scope.rs for x in xs.iter() -> for x in &xs 2015-02-02 13:40:18 -05:00
cleanup-rvalue-scopes.rs Opt into box_patterns feature gate in all tests that use them. 2015-02-11 11:47:14 +01:00
cleanup-rvalue-temp-during-incomplete-alloc.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cleanup-shortcircuit.rs Use https URLs to refer to rust-lang.org where appropriate. 2015-08-09 14:28:46 -07:00
clone-with-exterior.rs rollup merge of #24385: aturon/unstable-scoped 2015-04-14 10:59:55 -07:00
close-over-big-then-small-data.rs fallout: run-pass tests that use box. (many could be ported to Box::new instead in the future.) 2015-01-08 02:31:37 +01:00
closure-bounds-can-capture-chan.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
closure-inference.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
closure-inference2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
closure-reform.rs Remove references to old_{path,io} 2015-04-21 08:16:03 -07:00
cmp-default.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
coerce-expect-unsized.rs typeck: handle unsized structs in type hints by recursing into their last field. 2015-07-27 00:31:08 +03:00
coerce-match-calls.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
coerce-match.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
coerce-overloaded-autoderef.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
coerce-reborrow-imm-ptr-arg.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
coerce-reborrow-imm-ptr-rcvr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
coerce-reborrow-imm-vec-arg.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
coerce-reborrow-imm-vec-rcvr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
coerce-reborrow-mut-ptr-arg.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
coerce-reborrow-mut-ptr-rcvr.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
coerce-reborrow-mut-vec-arg.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
coerce-reborrow-mut-vec-rcvr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
coerce-unify-return.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
coherence-bigint-int.rs rustc: Add support for extern crate foo as bar 2015-03-24 14:55:15 -07:00
coherence-bigint-vecint.rs rustc: Add support for extern crate foo as bar 2015-03-24 14:55:15 -07:00
coherence-blanket.rs rustc: Add support for extern crate foo as bar 2015-03-24 14:55:15 -07:00
coherence-covered-type-parameter.rs rustc: Add support for extern crate foo as bar 2015-03-24 14:55:15 -07:00
coherence-impl-in-fn.rs Fallout in tests 2015-04-01 11:22:39 -04:00
coherence-iterator-vec-any-elem.rs rustc: Add support for extern crate foo as bar 2015-03-24 14:55:15 -07:00
coherence-iterator-vec.rs rustc: Add support for extern crate foo as bar 2015-03-24 14:55:15 -07:00
coherence-multidispatch-tuple.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
coherence-negative-impls-safe.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
coherence-subtyping.rs Fallout in tests 2015-04-02 13:24:46 -04:00
coherence-where-clause.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
coherence_copy_like.rs Merge conflicts 2015-04-02 13:25:06 -04:00
colorful-write-macros.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
comm.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
compare-generic-enums.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
complex.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
concat.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
conditional-compile-arch.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
conditional-compile.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
conditional-debug-macro-off.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
conditional-debug-macro-on.rs core: split into fmt::Show and fmt::String 2015-01-06 14:49:42 -08:00
const-adt-align-mismatch.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
const-autoderef.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-big-enum.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
const-binops.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
const-block-cross-crate-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-block-item-macro-codegen.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-block-item.rs rustc_privacy: Fix bugs in SanePrivacyVisitor 2015-11-09 21:15:53 +03:00
const-block.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-bound.rs Update old uses of ~ in comments and debugging statements 2015-05-03 20:16:02 -04:00
const-cast-ptr-int.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-cast.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-const.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-contents.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-cross-crate-const.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-cross-crate-extern.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-deref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-byref-self.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-byref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-cast.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-ptr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-struct.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-struct2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-structlike.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
const-enum-tuple.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-tuple2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-tuplestruct.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-tuplestruct2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-enum-vec-index.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
const-enum-vec-ptr.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
const-enum-vector.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
const-expr-in-fixed-length-vec.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
const-expr-in-vec-repeat.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
const-extern-function.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-fields-and-indexing.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
const-fn-const-eval.rs allow constant evaluation of function calls 2015-10-19 13:13:02 +02:00
const-fn-cross-crate.rs New tests for cross-crate usages of const fn and so forth 2015-05-29 11:52:59 -04:00
const-fn-method.rs add const_fn features 2015-05-29 09:42:54 -04:00
const-fn-nested.rs Make various fixes: 2015-05-21 11:47:30 -04:00
const-fn-val.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-fn.rs Make various fixes: 2015-05-21 11:47:30 -04:00
const-negative.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-nullary-enum.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-nullary-univariant-enum.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-rec-and-tup.rs
const-region-ptrs-noncopy.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-region-ptrs.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
const-str-ptr.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
const-struct-offsets.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
const-struct.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
const-trait-to-trait.rs Do not trip an assert when coercing &Trait to &Trait in constants. 2015-05-26 17:57:50 +03:00
const-tuple-struct.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
const-unit-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
const-unsafe-fn.rs Switch to 'const unsafe fn' ordering (rust-lang/rust#29107) 2015-10-25 12:03:07 +08:00
const-vec-of-fns.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
const-vec-syntax.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
const-vecs-and-slices.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
const.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
consts-in-patterns.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
copy-out-of-array-1.rs Fallout in tests 2015-04-01 11:22:39 -04:00
core-run-destroy.rs Tweak Travis to use GCE 2015-09-29 16:56:35 -07:00
crate-attributes-using-cfg_attr.rs Move configuration 1 phase before crate metadata collection 2015-05-14 10:35:35 -07:00
crate-leading-sep.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
crate-method-reexport-grrrrrrr.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
crate-name-attr-used.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
cross-crate-const-pat.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
cross-crate-newtype-struct-pat.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
cycle-generic-bound.rs Fallout in tests 2015-04-02 13:24:46 -04:00
cycle-trait-type-trait.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
dead-code-leading-underscore.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deep.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
default-associated-types.rs Feature gate associated type defaults 2015-07-29 15:11:07 -07:00
default-method-parsing.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
default-method-simple.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
default-method-supertrait-vtable.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
default_ty_param_default_dependent_associated_type.rs Add feature gate 2015-07-25 20:05:42 -07:00
default_ty_param_dependent_defaults.rs Add feature gate 2015-07-25 20:05:42 -07:00
default_ty_param_method_call_test.rs Add feature gate 2015-07-25 20:05:42 -07:00
default_ty_param_struct.rs Add feature gate 2015-07-25 20:05:42 -07:00
default_ty_param_struct_and_type_alias.rs Add feature gate 2015-07-25 20:05:42 -07:00
default_ty_param_trait_impl.rs Add feature gate 2015-07-25 20:05:42 -07:00
default_ty_param_trait_impl_simple.rs Add feature gate 2015-07-25 20:05:42 -07:00
default_ty_param_type_alias.rs Add feature gate 2015-07-25 20:05:42 -07:00
deprecated-derive.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
deprecated-macro_escape-inner.rs Rename macro_escape to macro_use 2015-01-05 12:00:57 -08:00
deprecated-macro_escape.rs Rename macro_escape to macro_use 2015-01-05 12:00:57 -08:00
deref-lval.rs Add : Box<_> or ::Box<_> type annotations to various places. 2015-03-03 20:29:01 +01:00
deref-mut-on-ref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
deref-on-ref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
deref-rc.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
deref.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
derive-no-std.rs syntax: Implement #![no_core] 2015-08-03 17:23:01 -07:00
deriving-associated-types.rs Stabilize debug builders for 1.2.0 2015-05-19 21:57:39 -07:00
deriving-bounds.rs Fallout in tests 2015-04-01 11:22:39 -04:00
deriving-clone-enum.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
deriving-clone-generic-enum.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-clone-generic-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
deriving-clone-generic-tuple-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
deriving-clone-struct.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-clone-tuple-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
deriving-cmp-generic-enum.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
deriving-cmp-generic-struct-enum.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
deriving-cmp-generic-struct.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
deriving-cmp-generic-tuple-struct.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
deriving-cmp-shortcircuit.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
deriving-default-box.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
deriving-encodable-decodable-box.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
deriving-encodable-decodable-cell-refcell.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
deriving-enum-single-variant.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-eq-ord-boxed-slice.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
deriving-global.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
deriving-hash.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
deriving-in-fn.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-in-macro.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
deriving-meta-empty-trait-list.rs Use derive rather than deriving in tests 2015-01-02 23:05:22 +13:00
deriving-meta-multiple.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-meta.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-self-lifetime-totalord-totaleq.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
deriving-show-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-show.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-via-extension-c-enum.rs s/Show/Debug/g 2015-01-29 07:49:02 -05:00
deriving-via-extension-enum.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-via-extension-hash-enum.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-via-extension-hash-struct.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-via-extension-struct-empty.rs s/Show/Debug/g 2015-01-29 07:49:02 -05:00
deriving-via-extension-struct-like-enum-variant.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-via-extension-struct-tuple.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
deriving-via-extension-struct.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
deriving-via-extension-type-params.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
destructure-array-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
die-macro.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
discrim-explicit-23030.rs Added tests for discriminant overflows. 2015-04-01 02:55:13 +02:00
discriminant_value.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
div-mod.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
double-ref.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
drop-flag-sanity-check.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
drop-flag-skip-sanity-check.rs Test fixes and rebase conflicts, round 2 2015-04-14 17:40:37 -07:00
drop-on-empty-block-exit.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
drop-on-ret.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
drop-struct-as-object.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
drop-trait-enum.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
drop-trait-generic.rs Register new snapshots 2015-04-28 17:23:45 -07:00
drop-trait.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
drop-uninhabited-enum.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
drop-with-type-ascription-1.rs implement rfc 1054: split_whitespace() fn, deprecate words() 2015-04-21 15:31:51 -04:00
drop-with-type-ascription-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
dropck_legal_cycles.rs Major revision to the dropck_legal_cycles test. 2015-10-09 18:04:18 +02:00
dropck_tarena_sound_drop.rs typos: fix a grabbag of typos all over the place 2015-10-08 19:49:31 +01:00
dst-coerce-custom.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
dst-coerce-rc.rs fallout of reworking rc and arc APIs 2015-08-19 15:52:12 -07:00
dst-coercions.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
dst-deref-mut.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
dst-deref.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
dst-index.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
dst-raw.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
dst-struct-sole.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
dst-struct.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
dst-trait.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
dupe-first-attr.rc rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
duplicated-external-mods.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
early-ret-binop-add.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
early-vtbl-resolution.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
else-if.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
empty-allocation-non-null.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
empty-allocation-rvalue-non-null.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
empty-mutable-vec.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
empty-struct-braces.rs Test and gate empty structures and variants better 2015-10-13 15:19:20 +03:00
empty-tag.rs Fallout in tests 2015-04-01 11:22:39 -04:00
enum-alignment.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
enum-clike-ffi-as-int.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
enum-discr.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
enum-discrim-autosizing.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
enum-discrim-manual-sizing.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
enum-discrim-range-overflow.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
enum-discrim-width-stuff.rs Fallout in tests 2015-04-01 11:22:39 -04:00
enum-disr-val-pretty.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
enum-export-inheritance.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
enum-null-pointer-opt.rs handle associated types correctly in null pointer optimization 2015-08-06 17:31:11 +03:00
enum-nullable-const-null-with-fields.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
enum-nullable-simplifycfg-misopt.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
enum-size-variance.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
enum-variants.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
enum-vec-initializer.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
env-home-dir.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
env-vars.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
eq-multidispatch.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
estr-slice.rs rustc: Remove &str indexing from the language. 2014-07-01 19:12:29 -07:00
estr-uniq.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
evec-slice.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
exec-env.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
explicit-i-suffix.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
explicit-self-closures.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
explicit-self-generic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
explicit-self-objects-uniq.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
explicit-self.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
explicit_self_xcrate_exe.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
export-abstract-tag.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
export-glob-imports-target.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
export-multi.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -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 Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
export-tag-variant.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
expr-block-fn.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
expr-block-generic-unique1.rs fallout: run-pass tests that use box. (many could be ported to Box::new instead in the future.) 2015-01-08 02:31:37 +01:00
expr-block-generic-unique2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-block-generic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-block-slot.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-block-unique.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
expr-block.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
expr-copy.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-empty-ret.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
expr-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-if-generic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-if-panic-all.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-if-panic.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
expr-if-struct.rs Fallout in tests 2015-04-01 11:22:39 -04:00
expr-if-unique.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-if.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-match-generic-unique1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-match-generic-unique2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-match-generic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-match-panic-all.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-match-panic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-match-struct.rs Fallout in tests 2015-04-01 11:22:39 -04:00
expr-match-unique.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-match.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
expr-scope.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
ext-expand-inner-exprs.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
exterior.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
extern-1.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
extern-call-deep.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
extern-call-deep2.rs Squeeze the last bits of tasks in documentation in favor of thread 2015-05-09 02:24:18 +09:00
extern-call-direct.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-call-indirect.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
extern-call-scrub.rs Squeeze the last bits of tasks in documentation in favor of thread 2015-05-09 02:24:18 +09:00
extern-calling-convention-test.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
extern-compare-with-return-type.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-crosscrate.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
extern-foreign-crate.rs Unquote all crate names without underscores 2015-03-27 10:58:12 -07:00
extern-methods.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
extern-mod-abi.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
extern-mod-ordering-exe.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
extern-mod-syntax.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
extern-pass-char.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-pass-double.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-pass-empty.rs msvc: Ignore extern-pass-empty on MSVC 2015-07-01 09:35:55 -07:00
extern-pass-TwoU8s.rs Fallout in tests 2015-04-01 11:22:39 -04:00
extern-pass-TwoU16s.rs Fallout in tests 2015-04-01 11:22:39 -04:00
extern-pass-TwoU32s.rs Fallout in tests 2015-04-01 11:22:39 -04:00
extern-pass-TwoU64s.rs Fallout in tests 2015-04-01 11:22:39 -04:00
extern-pass-u32.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-pass-u64.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-pub.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
extern-return-TwoU8s.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-return-TwoU16s.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-return-TwoU32s.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-return-TwoU64s.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern-rust.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
extern-take-value.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
extern_fat_drop.rs don't use drop_in_place as an intrinsic 2015-10-30 11:24:54 -04:00
extoption_env-not-defined.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fact.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
fat-arrow-match.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
fat-ptr-cast.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
fds-are-cloexec.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
field-destruction-order.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
filter-block-view-items.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
fixed_length_copy.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fixup-deref-mut.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
float-literal-inference.rs
float-nan.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
float-signature.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
float.rs Remove libdebug and update tests. 2014-10-16 11:15:34 -04:00
float2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
floatlits.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fmt-pointer-trait.rs fmt: Assume that we'll only ever see 32 or 64 bit pointers 2015-04-09 18:06:01 -07:00
fn-abi.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
fn-bare-assign.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fn-bare-coerce-to-block.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
fn-bare-item.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
fn-bare-size.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fn-bare-spawn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fn-coerce-field.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
fn-item-type-cast.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fn-item-type-coerce.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
fn-lval.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
fn-pattern-expected-type-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
fn-pattern-expected-type.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fn-type-infer.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
for-destruct.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
for-loop-goofiness.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
for-loop-into-iterator.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
for-loop-macro.rs Fix macro expansion in for loop pattern 2015-08-12 10:34:14 +02:00
for-loop-no-std.rs syntax: Implement #![no_core] 2015-08-03 17:23:01 -07:00
for-loop-panic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
foreach-external-iterators-break.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
foreach-external-iterators-hashmap-break-restart.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
foreach-external-iterators-hashmap.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
foreach-external-iterators-loop.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
foreach-external-iterators-nested.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
foreach-external-iterators.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
foreach-nested.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
foreach-put-structured.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
foreach-simple-outer-slot.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
foreign-call-no-runtime.rs Fix (and extend) src/test/run-pass/foreign-call-no-runtime.rs 2015-08-20 13:28:11 +02:00
foreign-dupe.rs Squeeze the last bits of tasks in documentation in favor of thread 2015-05-09 02:24:18 +09:00
foreign-fn-linkname.rs Remove pretty-expanded from tests that use format_args! 2015-04-12 22:01:55 -07:00
foreign-fn-with-byval.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
foreign-int-types.rs rustc: Don't lint about isize/usize in FFI 2015-09-30 14:31:01 -07:00
foreign-mod-unused-const.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
foreign-no-abi.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
foreign-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
foreign2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
format-nan.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
format-no-std.rs syntax: Implement #![no_core] 2015-08-03 17:23:01 -07:00
format-ref-cell.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fsu-moves-and-copies.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
fun-call-variants.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
fun-indirect-call.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
func-arg-incomplete-pattern.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
func-arg-ref-pattern.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
func-arg-wild-pattern.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
functional-struct-upd.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
generic-alias-unique.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
generic-default-type-params-cross-crate.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
generic-default-type-params.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
generic-derived-type.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
generic-exterior-unique.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
generic-extern-mangle.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
generic-fn-infer.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
generic-fn-twice.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
generic-fn-unique.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
generic-fn.rs Fallout in tests 2015-04-01 11:22:39 -04:00
generic-ivec-leak.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
generic-newtype-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
generic-object.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
generic-recursive-tag.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
generic-static-methods.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
generic-tag-corruption.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
generic-tag-local.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
generic-tag-match.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
generic-tag-values.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
generic-tag.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
generic-temporary.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
generic-tup.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
generic-type-synonym.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
generic-type.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
generic-unique.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
getopts_ref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
global-scope.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
guards-not-exhaustive.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
guards.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
hashmap-memory.rs Squeeze the last bits of tasks in documentation in favor of thread 2015-05-09 02:24:18 +09:00
hello.rs
hrtb-binder-levels-in-object-types.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
hrtb-debruijn-object-types-in-closures.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
hrtb-fn-like-trait-object.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
hrtb-fn-like-trait.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
hrtb-opt-in-copy.rs Fallout in tests 2015-04-01 11:22:39 -04:00
hrtb-parse.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
hrtb-precedence-of-plus-where-clause.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
hrtb-precedence-of-plus.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
hrtb-resolve-lifetime.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
hrtb-trait-object-paren-notation.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
hrtb-trait-object-passed-to-closure.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
hrtb-type-outlives.rs treat for<'a> T: 'a as T: 'static 2015-07-17 15:41:34 -04:00
hrtb-unboxed-closure-trait.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
html-literals.rs Re-enable html literals test 2015-06-12 14:19:47 -04:00
huge-largest-array.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
hygiene-dodging-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
hygienic-labels-in-let.rs add notes clarifying introduction of warnings for a pair of run-pass tests. 2015-04-21 18:09:46 +02:00
hygienic-labels.rs add notes clarifying introduction of warnings for a pair of run-pass tests. 2015-04-21 18:09:46 +02:00
i8-incr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
i32-sub.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
if-bot.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
if-check.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
if-let.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
if-ret.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
ifmt.rs Add fmt::Debug string escape tests 2015-09-29 15:53:58 +03:00
ignore-all-the-things.rs rollup merge of #23794: brson/slicegate 2015-03-27 16:09:52 -07:00
impl-implicit-trait.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
impl-inherent-non-conflict.rs typos: fix a grabbag of typos all over the place 2015-10-08 19:49:31 +01:00
impl-inherent-prefer-over-trait.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
impl-not-adjacent-to-type.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
impl-privacy-xc-1.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
impl-privacy-xc-2.rs Remove check-fast. Closes #4193, #8844, #6330, #7416 2014-04-06 15:55:43 -07:00
import-crate-with-invalid-spans.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
import-from.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
import-glob-0.rs Remove use of globs feature gate from tests. 2015-01-05 20:00:10 +11:00
import-glob-1.rs Addressing nits & tests explanations. 2015-08-04 08:14:32 +02:00
import-glob-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
import-in-block.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
import-rename.rs rustc: rename multiple imports in a list 2015-08-08 11:54:15 -07:00
import-trailing-comma.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
import.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
import2.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
import3.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
import4.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
import5.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
import6.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
import7.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
import8.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
inconsistent-lifetime-mismatch.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
infer-fn-tail-expr.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
infer-from-object-trait-issue-26952.rs Correct regression in type-inference caused by failing to reconfirm that 2015-07-24 12:24:37 -04:00
inferred-suffix-in-pattern-range.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
inherent-trait-method-order.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
init-large-type.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
init-res-into-things.rs Register new snapshots 2015-04-28 17:23:45 -07:00
inner-attrs-on-impl.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
inner-module.rs log: Introduce liblog, the old std::logging 2014-03-15 22:26:36 -07:00
inner-static.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
instantiable.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
int-abs-overflow.rs std: Make abs() panic on overflow in debug mode 2015-05-18 17:51:23 -07:00
int.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
integer-literal-radix.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
integer-literal-suffix-inference-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
integer-literal-suffix-inference-3.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
integer-literal-suffix-inference.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
into-iterator-type-inference-shift.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
intrinsic-alignment.rs Add netbsd amd64 support 2015-07-01 19:09:14 -07:00
intrinsic-assume.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
intrinsic-atomics-cc.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
intrinsic-atomics.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
intrinsic-move-val-cleanups.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
intrinsic-move-val.rs Revise intrinsic-move-val test to not require knowledge of whether filling drop is in use. 2015-07-28 16:15:05 +02:00
intrinsic-return-address.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
intrinsic-uninit.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
intrinsic-unreachable.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
intrinsics-integer.rs Check unchecked_div|rem's specialisation 2015-10-31 12:22:15 -07:00
intrinsics-math.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
invoke-external-foreign.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
irrefutable-unit.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-333.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-868.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-979.rs Register new snapshots 2015-04-28 17:23:45 -07:00
issue-1112.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-1251.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-1257.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-1451.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-1460.rs Fallout where types must be specified. 2015-03-30 05:02:20 -04:00
issue-1660.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-1696.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
issue-1701.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-1821.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-1866.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-1974.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2063-resource.rs Allow writing types which "can't" be instantiated. 2015-07-24 19:18:16 -07:00
issue-2063.rs Allow writing types which "can't" be instantiated. 2015-07-24 19:18:16 -07:00
issue-2074.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2190-1.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
issue-2214.rs msvc: Fix the link name for the lgamma 2015-07-01 09:35:55 -07:00
issue-2216.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
issue-2284.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2288.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-2311-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-2311.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2312.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-2316-c.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2380-b.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2383.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2414-c.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2428.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-2445-b.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2445.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2463.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2472.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2487-a.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2502.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2526-a.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2550.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2611-3.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-2631-b.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2633-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2633.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-2642.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2708.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2718.rs test: fix some indents 2015-06-27 15:45:48 +02:00
issue-2723-b.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2734.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2735-2.rs Register new snapshots 2015-04-28 17:23:45 -07:00
issue-2735-3.rs Register new snapshots 2015-04-28 17:23:45 -07:00
issue-2735.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2748-a.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-2748-b.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-2804-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2804.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-2895.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-2904.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-2935.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
issue-2936.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-2989.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
issue-3012-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3026.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-3037.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3052.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3091.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-3109.rs core: split into fmt::Show and fmt::String 2015-01-06 14:49:42 -08:00
issue-3121.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-3149.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3211.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
issue-3220.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-3290.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-3389.rs for x in xs.iter() -> for x in &xs 2015-02-02 13:40:18 -05:00
issue-3424.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
issue-3429.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3447.rs fallout: run-pass tests that use box. (many could be ported to Box::new instead in the future.) 2015-01-08 02:31:37 +01:00
issue-3500.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3556.rs Update old uses of ~ in comments and debugging statements 2015-05-03 20:16:02 -04:00
issue-3559.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
issue-3563-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-3563-3.rs Change some instances of .connect() to .join() 2015-07-10 19:40:46 -04:00
issue-3574.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-3609.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
issue-3656.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3683.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
issue-3702.rs librustc: Give trait methods accessible via fewer autoderefs priority 2014-09-26 13:02:47 -07:00
issue-3743.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-3753.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-3794.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-3847.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-3874.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-3878.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3888-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3895.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-3904.rs fix rpass tests 2015-01-05 17:22:16 -05:00
issue-3935.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-3979-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-3979-generics.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-3979-xcrate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-3979.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-3991.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-4016.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-4025.rs
issue-4036.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-4107.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-4208.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-4228.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-4252.rs Register new snapshots 2015-04-28 17:23:45 -07:00
issue-4333.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-4387.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-4401.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
issue-4446.rs More test fixes 2015-04-14 10:14:19 -07:00
issue-4448.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-4464.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-4541.rs Replace some uses of deprecated os functions 2015-02-16 16:19:24 +02:00
issue-4542.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-4545.rs rollup merge of #23786: alexcrichton/less-quotes 2015-03-27 16:10:25 -07:00
issue-4734.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-4735.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-4759-1.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
issue-4759.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-4830.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-4865-1.rs Addressing nits & tests explanations. 2015-08-04 08:14:32 +02:00
issue-4865-2.rs Add test descriptions. 2015-08-06 12:48:42 +02:00
issue-4865-3.rs Add test descriptions. 2015-08-06 12:48:42 +02:00
issue-4875.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5008-borrowed-traitobject-method-call.rs Use derive rather than deriving in tests 2015-01-02 23:05:22 +13:00
issue-5060.rs Miscellaneous cleanup for old issues. 2015-09-20 11:37:08 +01:00
issue-5192.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-5239-2.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-5243.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-5280.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
issue-5315.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5321-immediates-with-bare-self.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
issue-5353.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5518.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-5521.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-5530.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-5550.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5554.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-5572.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5666.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
issue-5688.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-5708.rs Fallout in tests --- misc error message changes, WF fixes 2015-08-12 17:58:57 -04:00
issue-5718.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-5741.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5754.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5791.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5884.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-5900.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-5917.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-5950.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-5988.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
issue-5997.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-6117.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-6128.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-6130.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-6153.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-6157.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-6318.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-6334.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-6341.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-6344-let.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-6344-match.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-6449.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-6470.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-6557.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-6892.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-6898.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
issue-6919.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-7012.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
issue-7178.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-7222.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-7268.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-7344.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-7519-match-unit-in-arg.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-7563.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-7575.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-7607-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-7660.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-7663.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-7673-cast-generically-implemented-trait.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-7784.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-7899.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-7911.rs Fallout: tests. As tests frequently elide things, lots of changes 2015-02-18 10:25:28 -05:00
issue-8044.rs rollup merge of #23786: alexcrichton/less-quotes 2015-03-27 16:10:25 -07:00
issue-8171-default-method-self-inherit-builtin-trait.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-8248.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-8249.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-8259.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-8351-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-8351-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-8391.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-8398.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
issue-8401.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-8460.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
issue-8498.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-8506.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-8578.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-8709.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-8783.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-8827.rs std: Clean out #[deprecated] APIs 2015-03-31 15:49:57 -07:00
issue-8851.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-8860.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-8898.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-9047.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-9110.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-9123.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-9129.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-9188.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-9249.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-9259.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-9382.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-9394-inherited-trait-calls.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-9396.rs rollup merge of #24385: aturon/unstable-scoped 2015-04-14 10:59:55 -07:00
issue-9446.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
issue-9719.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-9737.rs ignore-test cleanup 2015-06-12 14:16:16 -04:00
issue-9906.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-9918.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-9942.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-9951.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-9968.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-10025.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10028.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-10031.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10228.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10392.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-10396.rs for x in xs.iter() -> for x in &xs 2015-02-02 13:40:18 -05:00
issue-10436.rs add test for #10436 2015-07-20 12:59:33 -04:00
issue-10456.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10626.rs Remove references to old_{path,io} 2015-04-21 08:16:03 -07:00
issue-10638.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10682.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-10683.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10714.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10718.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10734.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-10763.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10764.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10767.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
issue-10802.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-10806.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-10853.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-10902.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-11047.rs Test case for Issue 11047 2015-09-28 22:33:29 +10:00
issue-11085.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-11205.rs fallout to run-pass tests. 2015-05-08 15:39:25 +02:00
issue-11224.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-11225-1.rs rustc_privacy: Do not export items needed solely for the reachability analysis 2015-11-05 18:17:33 +03:00
issue-11225-2.rs rustc_privacy: Do not export items needed solely for the reachability analysis 2015-11-05 18:17:33 +03:00
issue-11225-3.rs rustc_privacy: Do not export items needed solely for the reachability analysis 2015-11-05 18:17:33 +03:00
issue-11267.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-11382.rs Implement numeric fallback 2015-01-01 17:12:15 -05:00
issue-11384.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-11508.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-11529.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-11552.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-11577.rs Clean newlines 2015-10-06 11:14:11 -04:00
issue-11592.rs lint: handle private traits better 2015-03-30 18:16:25 -04:00
issue-11612.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-11677.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-11709.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
issue-11820.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-11869.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-11881.rs Remove references to old_{path,io} 2015-04-21 08:16:03 -07:00
issue-11940.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-11958.rs More test fixes and fallout of stability changes 2015-06-17 09:07:17 -07:00
issue-12133-1.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-12133-2.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-12133-3.rs test: Fix some tests to run with musl 2015-04-28 09:35:22 -07:00
issue-12285.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-12582.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
issue-12612.rs rustc: Add support for extern crate foo as bar 2015-03-24 14:55:15 -07:00
issue-12660.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-12677.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-12699.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
issue-12729.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-12744.rs Switched to Box::new in many places. 2015-03-03 21:05:55 +01:00
issue-12860.rs Negative case of len() -> is_empty() 2015-04-14 20:26:03 -07:00
issue-12909.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-13027.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
issue-13105.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
issue-13167.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-13204.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-13214.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-13259-windows-tcb-trash.rs std: Migrate to the new libc 2015-11-09 22:55:50 -08:00
issue-13264.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-13304.rs std: Clean out #[deprecated] APIs 2015-03-31 15:49:57 -07:00
issue-13323.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-13405.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-13434.rs remove all kind annotations from closures 2015-02-04 20:06:08 -05:00
issue-13494.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
issue-13507-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-13620.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-13655.rs rollup merge of #23282: nikomatsakis/fn-trait-inheritance 2015-03-24 14:50:44 -07:00
issue-13665.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-13703.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-13763.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
issue-13775.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-13808.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-13837.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-13867.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-13872.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-13902.rs Add regression test for #13902 2015-06-29 17:28:21 -07:00
issue-14021.rs rustc: Remove old_orphan_check entirely 2015-03-31 13:41:19 -07:00
issue-14082.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-14229.rs add test for #14229 2015-07-20 08:31:54 -04:00
issue-14254.rs Fallout in tests --- misc error message changes, WF fixes 2015-08-12 17:58:57 -04:00
issue-14308.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-14330.rs Unquote all crate names without underscores 2015-03-27 10:58:12 -07:00
issue-14344.rs trans: Link rlibs to dylibs with --whole-archive 2015-07-08 15:24:23 -07:00
issue-14382.rs add test for #14382 2015-07-21 14:39:40 -04:00
issue-14393.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-14399.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-14421.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-14422.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-14456.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-14589.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-14821.rs add test for #14821 2015-07-18 17:40:15 -04:00
issue-14837.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-14865.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-14901.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
issue-14919.rs std: Update MatchIndices to return a subslice 2015-09-25 09:29:23 -07:00
issue-14933.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-14936.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-14940.rs Remove references to old_{path,io} 2015-04-21 08:16:03 -07:00
issue-14958.rs rollup merge of #23282: nikomatsakis/fn-trait-inheritance 2015-03-24 14:50:44 -07:00
issue-14959.rs rollup merge of #23282: nikomatsakis/fn-trait-inheritance 2015-03-24 14:50:44 -07:00
issue-15043.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-15063.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
issue-15080.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-15104.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-15108.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-15129.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-15155.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
issue-15189.rs Update suffixes en masse in tests using perl -p -i -e 2015-02-18 09:10:10 -05:00
issue-15221.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-15261.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-15444.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-15487.rs Replace "ignore-win32" in tests with "ignore-windows" 2014-08-12 00:14:00 -07:00
issue-15523-big.rs Test case for 64-bit corner cases where truncation occurred before prior commit. 2015-04-10 19:11:03 +02:00
issue-15523.rs Test case for 64-bit corner cases where truncation occurred before prior commit. 2015-04-10 19:11:03 +02:00
issue-15562.rs Fix a broken test 2015-04-03 15:37:51 +03:00
issue-15571.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
issue-15673.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
issue-15689-1.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-15689-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-15730.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-15734.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-15763.rs Forbid is/us suffixes. Fixes #22496 2015-04-15 16:13:26 -07:00
issue-15774.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-15793.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-15858.rs Register new snapshots 2015-04-28 17:23:45 -07:00
issue-15881-model-lexer-dotdotdot.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-15924.rs Register new snapshots 2015-04-28 17:23:45 -07:00
issue-16151.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-16256.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-16272.rs Ignore some tests on aarch64 to pass the run-pass test on aarch64-linux-android 2015-03-19 15:33:15 +09:00
issue-16278.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
issue-16441.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-16452.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-16492.rs Register new snapshots 2015-04-28 17:23:45 -07:00
issue-16530.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
issue-16560.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-16596.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-16597-empty.rs syntax: Feature gate #[start] and #[main] 2015-01-16 14:59:03 -08:00
issue-16597.rs Change name of unit test sub-module to "tests". 2015-04-24 23:06:41 +02:00
issue-16602-1.rs Add tests for #16602 2015-04-11 17:13:24 +10:00
issue-16602-2.rs Add tests for #16602 2015-04-11 17:13:24 +10:00
issue-16602-3.rs Add tests for #16602 2015-04-11 17:13:24 +10:00
issue-16643.rs rollup merge of #23786: alexcrichton/less-quotes 2015-03-27 16:10:25 -07:00
issue-16648.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-16668.rs Switched to Box::new in many places. 2015-03-03 21:05:55 +01:00
issue-16671.rs Auto merge of #22797 - alexcrichton:io-stdio, r=aturon 2015-03-02 07:10:14 +00:00
issue-16739.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-16745.rs test: Add an assertion to the #16745 testcase 2015-04-19 00:25:13 -07:00
issue-16774.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-16783.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-16819.rs Add feature gate 2015-09-18 15:28:01 +03:00
issue-16922.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-17068.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-17074.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-17121.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-17170.rs Fix existing tests for new #[repr(simd)]. 2015-08-17 14:41:40 -07:00
issue-17216.rs Register new snapshots 2015-04-28 17:23:45 -07:00
issue-17233.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-17302.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-17322.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-17336.rs Add regression test for #17336 2015-10-12 09:44:26 -04:00
issue-17351.rs std: Clean out #[deprecated] APIs 2015-03-31 15:49:57 -07:00
issue-17361.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-17503.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-17662.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-17718-parse-const.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-17718-static-unsafe-interior.rs add const_fn features 2015-05-29 09:42:54 -04:00
issue-17718.rs add const_fn features 2015-05-29 09:42:54 -04:00
issue-17732.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-17734.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-17746.rs Add test for #17746 2015-03-31 16:22:23 -07:00
issue-17756.rs Add regression test for #17756 2015-06-29 17:10:53 -07:00
issue-17771.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-17816.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-17877.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-17897.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
issue-17904.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-18075.rs Add regression test for #18075 2015-05-12 12:23:19 +02:00
issue-18083.rs Addressing nits & tests explanations. 2015-08-04 08:14:32 +02:00
issue-18110.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-18188.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
issue-18232.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-18352.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-18353.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-18412.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-18425.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-18464.rs Test fixes and rebase conflicts 2014-11-03 11:02:36 -08:00
issue-18501.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-18514.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-18539.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-18652.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-18655.rs Add regression tests for issues #18655 and #18988. 2015-06-21 15:09:05 -05:00
issue-18661.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-18685.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-18711.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-18738.rs Remove pretty-expanded from 2 tests; deriving(Ord) uses unstable intrinsic. 2015-04-11 00:50:59 +02:00
issue-18767.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-18809.rs Add a regression test for issue #18809. 2015-06-20 16:16:54 -05:00
issue-18845.rs librustc_trans: Remove misoptimization in treating derefs of Box as rvalues. 2015-05-20 05:07:27 -04:00
issue-18859.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-18906.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-18913.rs rustc_back: Don't pass 'u' to ar invocations 2015-05-26 07:06:31 -07:00
issue-18988.rs Add regression tests for issues #18655 and #18988. 2015-06-21 15:09:05 -05:00
issue-19001.rs type_of: use sizing_type_of to check the size of arrays 2015-10-27 23:02:23 +02:00
issue-19037.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19081.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
issue-19097.rs Add regression test for #19097 2015-04-09 09:29:40 -07:00
issue-19098.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19100.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-19102.rs add #[allow(unused_qualifications)] to derived impls 2015-07-23 13:26:49 -04:00
issue-19127.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19129-1.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19129-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19135.rs Fallout: tests. As tests frequently elide things, lots of changes 2015-02-18 10:25:28 -05:00
issue-19244.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-19293.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19340-1.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
issue-19340-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19358.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-19367.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
issue-19398.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19404.rs add test for #19404 2015-07-20 08:39:51 -04:00
issue-19479.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19499.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19631.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19632.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-19811-escape-unicode.rs Replace usage of String::from_str with String:from 2015-06-08 16:55:35 +02:00
issue-19850.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-19982.rs rollup merge of #23282: nikomatsakis/fn-trait-inheritance 2015-03-24 14:50:44 -07:00
issue-20009.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20055-box-trait.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
issue-20055-box-unsized-array.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
issue-20091.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
issue-20174.rs Add regression test for #20174 2015-05-05 15:57:27 +02:00
issue-20186.rs Add regression test for #20186 2015-05-05 15:57:28 +02:00
issue-20313.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20343.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20389.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20396.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20414.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-20454.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
issue-20544.rs Add regression test for #20544 2015-07-13 22:25:19 +09:00
issue-20575.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20616.rs fix typos caught by codespell 2015-05-06 03:00:13 +02:00
issue-20644.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20676.rs Remove pretty-expanded from tests that use format_args! 2015-04-12 22:01:55 -07:00
issue-20763-1.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20763-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-20797.rs Removed many pointless calls to *iter() and iter_mut() 2015-06-10 21:14:03 +01:00
issue-20803.rs add test for #20803 2015-08-28 12:54:17 -04:00
issue-20823.rs Fallout in testing. 2015-03-16 11:03:54 +13:00
issue-20825.rs add tests for #20825 2015-07-18 18:03:30 -04:00
issue-20953.rs impl Iterator for &mut Iterator and Box<Iterator> 2015-01-19 10:41:07 -05:00
issue-21033.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-21058.rs Fallout in tests -- we now report an error if you even reference a type 2015-08-12 17:58:56 -04:00
issue-21140.rs Add regression test for #21140 2015-07-14 22:57:55 +09:00
issue-21174.rs Add regression tests for #21174 2015-05-05 15:57:28 +02:00
issue-21245.rs std: Add Default/IntoIterator/ToOwned to the prelude 2015-04-17 16:37:30 -07:00
issue-21291.rs Ensure that .join().unwrap() works 2015-04-09 17:33:17 -07:00
issue-21296.rs Fallout in tests 2015-04-01 11:22:39 -04:00
issue-21306.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-21350.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-21361.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-21363.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-21384.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
issue-21400.rs Regression test for Issue 21400. 2015-04-10 15:34:34 +02:00
issue-21402.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-21410.rs Add tests for #21410 and #24972 2015-10-25 20:32:10 -04:00
issue-21475.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-21486.rs add const_fn features 2015-05-29 09:42:54 -04:00
issue-21520.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-21562.rs Add regression test for #21562 2015-05-07 00:25:48 +02:00
issue-21622.rs Add regression test for #21622 2015-06-17 19:46:33 -07:00
issue-21634.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-21655.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-21721.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-21726.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-21891.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
issue-21909.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-21922.rs Add test for #21922 2015-09-29 10:19:24 -04:00
issue-22036.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-22258.rs Add regression test for #22258 2015-05-07 00:25:53 +02:00
issue-22356.rs Fallout in tests 2015-04-02 13:24:46 -04:00
issue-22375.rs Add regression test for #22375 2015-06-24 00:56:53 -07:00
issue-22403.rs Add test for #22403 2015-10-23 20:15:33 -04:00
issue-22426.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-22463.rs Add regression test for #22463 2015-05-07 00:25:53 +02:00
issue-22471.rs Add regression test for #22471 2015-05-04 14:03:12 +02:00
issue-22536-copy-mustnt-zero.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
issue-22546.rs Add tests for parsing of patterns 2015-04-03 05:56:27 +03:00
issue-22577.rs Test fixes and rebase conflicts, round 3 2015-03-31 17:39:24 -07:00
issue-22629.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-22777.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-22781.rs Add tests 2015-10-25 07:37:21 -04:00
issue-22814.rs Add regression test for #22814 2015-10-12 15:40:47 -04:00
issue-22828.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-22864-1.rs Add regression tests for #22864 2015-06-16 20:11:56 -07:00
issue-22864-2.rs Add regression tests for #22864 2015-06-16 20:11:56 -07:00
issue-22992-2.rs Add tests for #17001, #21449, #22992, #23208, #23442 2015-09-08 16:51:21 -04:00
issue-22992.rs Add tests for #17001, #21449, #22992, #23208, #23442 2015-09-08 16:51:21 -04:00
issue-23036.rs Add test for #23036 2015-09-15 10:14:11 -04:00
issue-23208.rs Add tests for #17001, #21449, #22992, #23208, #23442 2015-09-08 16:51:21 -04:00
issue-23261.rs librustc_trans: Handle DST structs in trans::_match. 2015-05-03 05:36:04 -04:00
issue-23304-1.rs Add regression tests for #23304 2015-08-17 09:36:03 -04:00
issue-23304-2.rs Add regression tests for #23304 2015-08-17 09:36:03 -04:00
issue-23336.rs Select projections over impls in case of ambiguity. Fixes #23336. 2015-05-07 22:21:57 +03:00
issue-23338-ensure-param-drop-order.rs remove excess string allocation 2015-11-05 15:30:34 +01:00
issue-23338-params-outlive-temps-of-body.rs Test cases for Issue 23338. 2015-04-04 09:24:29 +02:00
issue-23433.rs librustc_trans: Don't ICE on unsized type behind raw pointer in nullable pointer opt. 2015-04-25 07:47:45 -04:00
issue-23435.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue-23442.rs Add tests for #17001, #21449, #22992, #23208, #23442 2015-09-08 16:51:21 -04:00
issue-23485.rs Fix some typos 2015-03-28 18:09:51 +03:00
issue-23491.rs add test for #23491 2015-07-19 15:46:57 -04:00
issue-23550.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
issue-23611-enum-swap-in-drop.rs remove excess string allocation 2015-11-05 15:30:34 +01:00
issue-23649-1.rs Add regression tests for #23649 2015-06-19 14:58:57 -07:00
issue-23649-2.rs Add regression tests for #23649 2015-06-19 14:58:57 -07:00
issue-23649-3.rs Add regression tests for #23649 2015-06-19 14:58:57 -07:00
issue-23781.rs std: Don't deadlock/panic on recursive prints 2015-03-27 19:03:18 -07:00
issue-23808.rs Fix #23808: dead_code lint: visit types in paths 2015-08-12 08:22:08 +02:00
issue-23825.rs Create a FreshFloatTy separate from FreshIntTy 2015-05-12 21:45:56 +03:00
issue-23891.rs Add tests 2015-10-25 07:37:21 -04:00
issue-23968-const-not-overflow.rs Fix compile-time integer overflow when using ! on unsigned values 2015-05-17 10:04:15 +02:00
issue-23992.rs project: add a recursion limit to "tail-recursive" projections 2015-10-27 16:04:06 +02:00
issue-24085.rs typos: fix a grabbag of typos all over the place 2015-10-08 19:49:31 +01:00
issue-24086.rs handle all type variants correctly in dropck 2015-07-24 23:46:17 +03:00
issue-24161.rs Add Clone impls for extern "C" and unsafe fns 2015-04-07 12:39:25 -07:00
issue-24227.rs Add test for #24227 2015-06-19 18:36:54 +02:00
issue-24308.rs Substitute free lifetimes when Self is used within a method body 2015-05-20 21:23:41 +03:00
issue-24313.rs std: Don't assume thread::current() works on panic 2015-04-27 16:15:36 -07:00
issue-24389.rs Add test for #24389 2015-09-28 13:39:29 -04:00
issue-24434.rs Strip configuration before checking feature gates of macros 2015-04-14 23:39:45 +02:00
issue-24533.rs Add test for #24533 2015-09-16 06:50:24 -04:00
issue-24589.rs Fix auto_ref for fat pointers 2015-05-25 17:25:41 +02:00
issue-24779.rs Translate "ignored" closure expressions. 2015-06-08 10:29:34 -07:00
issue-24805-dropck-itemless.rs Add RFC 1238's unsafe_destructor_blind_to_params (UGEH) where needed. 2015-10-06 14:16:49 +02:00
issue-24945-repeat-dash-opts.rs Unit test ensuring we accept repeated -g and -O. 2015-04-29 18:56:16 +02:00
issue-24954.rs Closes #24954 2015-11-03 10:20:45 -02:00
issue-24956.rs Add tests 2015-10-25 07:37:21 -04:00
issue-24972.rs Add tests for #21410 and #24972 2015-10-25 20:32:10 -04:00
issue-25089.rs Clear cached landing pads before generating a call. 2015-06-06 19:20:27 -07:00
issue-25180.rs Add regression test for #25180 2015-06-17 19:37:27 -07:00
issue-25185.rs trans: Link rlibs to dylibs with --whole-archive 2015-07-08 15:24:23 -07:00
issue-25279.rs Substitute free lifetimes when Self is used within a method body 2015-05-20 21:23:41 +03:00
issue-25339.rs Feature gate associated type defaults 2015-07-29 15:11:07 -07:00
issue-25343.rs Don't recurse down closures for duplicate-label checking 2015-07-17 23:48:05 +05:30
issue-25394.rs Make #[derive(Debug)] work with unsized fields 2015-05-17 14:03:37 -07:00
issue-25439.rs Add test for #25439 2015-10-01 11:30:22 -04:00
issue-25467.rs sort the existential bounds list in tydecode 2015-09-13 20:59:40 +03:00
issue-25497.rs librustc_trans: Remove misoptimization in treating derefs of Box as rvalues. 2015-05-20 05:07:27 -04:00
issue-25515.rs Don't call drop when taking the address of unsized fields 2015-05-19 14:25:35 +02:00
issue-25549-multiple-drop.rs Don't call drop when taking the address of unsized fields 2015-05-19 14:25:35 +02:00
issue-25679.rs Make impl-trait-ref associated types work in methods 2015-06-15 18:27:35 +03:00
issue-25693.rs Add tests 2015-10-25 07:37:21 -04:00
issue-25700-1.rs Simplify and type_known_to_meet_builtin_bound and make it more correct when 2015-06-18 20:51:43 +03:00
issue-25700-2.rs Normalize associated types in closure signatures 2015-06-18 23:04:57 +03:00
issue-25746-bool-transmute.rs Fix transmutes with boolean source values 2015-05-25 13:08:31 +02:00
issue-25757.rs Make expr_is_lval more robust 2015-06-21 22:31:57 +03:00
issue-26095.rs Add tests 2015-10-25 07:37:21 -04:00
issue-26205.rs Fix multiple mutable autoderefs with Box 2015-09-03 14:41:27 -04:00
issue-26322.rs Add a test for issue 26322 2015-06-16 22:23:01 +03:00
issue-26468.rs Add a test for #26468 2015-07-20 10:33:44 +02:00
issue-26484.rs Create proper debuginfo for closure variables 2015-07-20 15:45:11 +02:00
issue-26641.rs handle all type variants correctly in dropck 2015-07-24 23:46:17 +03:00
issue-26646.rs Add missing trailing newline. 2015-06-29 21:49:15 +01:00
issue-26655.rs Remove type_needs_unwind_cleanup 2015-06-30 01:34:17 +03:00
issue-26709.rs Fix ICE caused by Drop implementations for unsized types 2015-07-03 14:44:51 +02:00
issue-26802.rs return erased regions from fulfill_obligation 2015-07-20 00:16:37 +03:00
issue-26805.rs rustc_trans: always use normalizing_infer_ctxt. 2015-07-05 22:41:23 +03:00
issue-26905.rs Ignore PhantomData when checking CoerceUnsized implementations 2015-09-14 22:02:26 -06:00
issue-26996.rs Correctly detect reassignments to the interior of matched structs/tuples 2015-07-13 13:23:13 +02:00
issue-27054-primitive-binary-ops.rs implement raw fat pointer ops 2015-09-06 16:11:38 +03:00
issue-27105.rs Add test for #27105 2015-10-16 21:32:06 -04:00
issue-27240.rs handle all type variants correctly in dropck 2015-07-24 23:46:17 +03:00
issue-27268.rs Fix an ICE with a closure in a constant. 2015-07-24 17:00:37 -07:00
issue-27281.rs Substitute free lifetimes in Self::T 2015-07-25 21:25:51 +03:00
issue-27320.rs Add tests 2015-10-25 07:37:21 -04:00
issue-27401-dropflag-reinit.rs placate the pretty tests by ignoring my test. 2015-08-07 18:23:37 +02:00
issue-27583.rs add a regression test for #27583. Fixes #27583. 2015-08-18 17:44:01 -04:00
issue-27639.rs Fix issue with for loop expansion 2015-08-15 10:17:12 +02:00
issue-27859.rs trans: Call fmod manually for 32-bit float rem 2015-08-17 23:32:30 -07:00
issue-27890.rs check upvars in closures that are in statics 2015-10-01 15:22:57 +03:00
issue-27997.rs handle dtors having generics in an order different from their ADT 2015-08-25 20:50:30 +03:00
issue-28181.rs create a region-map for types in generics 2015-09-03 13:35:41 +03:00
issue-28189.rs adding test for #28189 2015-10-24 21:23:32 +02:00
issue-28279.rs Do not return the result from sub/equate routines, just return a. 2015-09-14 15:52:48 -06:00
issue-28550.rs use the infcx tables to check if a closure is Copy 2015-09-24 17:02:07 +03:00
issue-28561.rs Add tests for macro-based impls 2015-09-21 10:42:18 -04:00
issue-28676.rs Add test case for #28676. 2015-10-14 14:51:26 -06:00
issue-28822.rs Whitelisting PatWild for E0022. Fix #28822 2015-10-10 09:27:24 +00:00
issue-28839.rs Fix reborrows of &mut pointers 2015-10-07 17:23:51 +02:00
issue-28871.rs add main fn to test 2015-10-23 11:04:38 -04:00
issue-28936.rs Add test for #28936 2015-10-21 08:40:33 -04:00
issue-28983.rs normalize the types of foreign functions 2015-10-12 21:54:48 +03:00
issue-28999.rs require a method callee's type to outlive the call 2015-10-12 23:51:59 +03:00
issue-29030.rs Add test for #29030 2015-10-28 08:52:32 -04:00
issue-29037.rs Add Shared pointer and have {Arc, Rc} use it 2015-10-16 18:35:31 -04:00
issue-29048.rs Regression test for #29048. Fixes #29048. 2015-10-28 18:48:49 -04:00
issue-29071-2.rs Fix restrictions when parsing rhs of equalities 2015-10-27 21:55:10 +02:00
issue-29071.rs Add a test for #29071 2015-10-27 21:55:04 +02:00
issue-29166.rs Add dropck unsafe escape hatch (UGEH) to vec::IntoIter. 2015-10-20 14:54:38 +02:00
issue-29227.rs Ignore long lines on this test. 2015-11-11 09:02:24 -05:00
issue-29488.rs std: Prevent print panics when using TLS 2015-10-31 09:41:21 -07:00
issue-29522.rs resolve: don't speculatively create freevars when resolving 2015-11-03 21:08:42 +02:00
issue-29540.rs Don't chain method calls in #[derive(Debug)] 2015-11-03 22:48:28 -08:00
issue-29710.rs syntax: Use let _ in #[derive(Debug)] 2015-11-09 10:42:58 -08:00
issue-29740.rs Rewrite match algorithm to avoid massive blowup in generated code for 2015-11-11 16:38:58 -05:00
issue2170exe.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue18173.rs Test that associated types are not required as type parameters 2015-05-15 20:49:01 -06:00
issue22008.rs Fix misoptimizations when matching against strings/slices 2015-02-16 00:50:02 +01:00
issue22346.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue24353.rs Fix ICE when returning a variable whose declaration is unreachable 2015-04-13 13:07:41 +02:00
issue24687-embed-debuginfo.rs Add -g that I should have included in PR #24932. 2015-04-29 18:58:42 +02:00
issue26127.rs Use the correct type of undef value for ignored return values in trans_named_tuple_constructor 2015-06-10 00:07:47 +02:00
issue28498-must-work-ex1.rs shorten URLs to placate make tidy. 2015-10-06 16:51:20 +02:00
issue28498-must-work-ex2.rs shorten URLs to placate make tidy. 2015-10-06 16:51:20 +02:00
issue28498-ugeh-ex1.rs placate check-pretty via comment rearrangement. 2015-10-08 23:02:42 +02:00
issue28498-ugeh-with-lifetime-param.rs Added tests illustrating when and when not to use the UGEH attribute w.r.t. a lifetime param. 2015-10-08 14:43:45 +02:00
issue28498-ugeh-with-passed-to-fn.rs Added tests illustrating when and when not to use the UGEH attribute w.r.t. types in negative position. 2015-10-08 14:43:45 +02:00
issue28498-ugeh-with-trait-bound.rs Added tests illustrating when and when not to use the UGEH attribute w.r.t. a trait bound. 2015-10-08 14:43:44 +02:00
issue_3136_b.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
issue_9155.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
istr.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
item-attributes.rs Remove pretty-expanded from tests that use format_args! 2015-04-12 22:01:55 -07:00
item-name-overload.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
iter-cloned-type-inference.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
iter-range.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
ivec-pass-by-value.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
ivec-tag.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
keyword-changes-2012-07-31.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
kindck-implicit-close-over-mut-var.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
kindck-owned-trait-contains-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
kinds-in-metadata.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
labeled-break.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
lambda-infer-unresolved.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
lambda-var-hygiene.rs Miscellaneous cleanup for old issues. 2015-09-20 11:37:08 +01:00
large-records.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
last-use-in-block.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
last-use-in-cap-clause.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
last-use-is-capture.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
lazy-and-or.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
lazy-init.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
leak-unique-as-tydesc.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
let-assignability.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
let-destruct-ref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
let-var-hygiene.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
lexer-crlf-line-endings-string-literal-doc-comment.rs Restore line endings in a test 2015-10-06 21:59:49 -04:00
linear-for-loop.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
link-section.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
linkage-visibility.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
linkage1.rs rollup merge of #23786: alexcrichton/less-quotes 2015-03-27 16:10:25 -07:00
lint-cap.rs rustc: Add a --cap-lints flag to the compiler 2015-07-28 18:23:09 -07:00
lint-dead-code-variant.rs Add a test 2015-06-17 21:37:36 +09:00
lint-non-camel-case-types-non-uppercase-statics-unicode.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
lint-non-camel-case-with-trailing-underscores.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
lint-non-uppercase-statics-lowercase-mut-statics.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
list.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
liveness-assign-imm-local-after-loop.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
liveness-assign-imm-local-after-ret.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
liveness-loop-break.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
liveness-move-in-loop.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -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 Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
log-knows-the-names-of-variants.rs std: Rename Show/String to Debug/Display 2015-01-20 22:36:13 -08:00
log-poly.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
log_syntax-trace_macros-macro-locations.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
logging-enabled-debug.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
logging-enabled.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
logging-only-prints-once.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
logging-right-crate.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
logging-separate-lines.rs Remove references to old_{path,io} 2015-04-21 08:16:03 -07:00
logging_before_rt_started.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
long-while.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
loop-break-cont-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
loop-break-cont.rs Update suffixes en masse in tests using perl -p -i -e 2015-02-18 09:10:10 -05:00
loop-diverges.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
loop-label-shadowing.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
loop-labeled-break-value.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
loop-no-reinit-needed-post-bot.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
loop-scope.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-2.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
macro-attribute-expansion.rs Un-gate macro_rules 2015-01-05 18:21:14 -08:00
macro-attributes.rs Fix unknown attribute in test 2015-03-02 05:31:34 +05:30
macro-block-nonterminal.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-crate-def-only.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-crate-nonterminal-renamed.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-crate-nonterminal.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-crate-use.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-deep_expansion.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-delimiter-significance.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
macro-doc-comments.rs Fix doc comment parsing in macros. 2015-07-18 11:34:59 +01:00
macro-doc-escapes.rs Preserve escape sequences in documentation comments on macro expansion 2015-07-10 01:30:52 +09:00
macro-export-inner-module.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-followed-by-seq.rs Permit token trees, identifiers, and blocks to be following by 2015-05-15 13:23:27 -04:00
macro-include-items.rs Update suffixes en masse in tests using perl -p -i -e 2015-02-18 09:10:10 -05:00
macro-interpolation.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-invocation-in-count-expr-fixed-array-type.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
macro-meta-items.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
macro-method-issue-4621.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-multiple-items.rs Un-gate macro_rules 2015-01-05 18:21:14 -08:00
macro-nested_stmt_macros.rs Improves handling of statement macros. 2015-04-07 09:29:05 -05:00
macro-nt-list.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
macro-of-higher-order.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-pat-follow.rs Allow patterns to be followed by if and in. 2015-05-22 12:47:52 -04:00
macro-pat.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-path.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-reexport-no-intermediate-use.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-reexport.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-stmt.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
macro-stmt_macro_in_expr_macro.rs Improves handling of statement macros. 2015-04-07 09:29:05 -05:00
macro-tt-followed-by-seq.rs Permit token trees, identifiers, and blocks to be following by 2015-05-15 13:23:27 -04:00
macro-use-all-and-none.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-use-all.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-use-both.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-use-one.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
macro-with-attrs1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-with-attrs2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
macro-with-braces-in-expr-position.rs test: Join child threads on windows in tests 2015-05-27 09:15:19 -07:00
macro_with_super_2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
match-arm-statics.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-borrowed_str.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-bot-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-bot.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-enum-struct-0.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-enum-struct-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-implicit-copy-unique.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
match-in-macro.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-join.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-naked-record-expr.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-naked-record.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-path.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
match-pattern-bindings.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-pattern-lit.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
match-pattern-no-type-params.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-pattern-simple.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-phi.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-pipe-binding.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-range-infer.rs Improve diagnostic messages for range patterns. 2015-06-03 16:15:15 +10:00
match-range-static.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-range.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
match-reassign.rs Always properly copy values into bindings when mutating the match discriminant 2015-03-25 14:50:04 +01:00
match-ref-binding-in-guard-3256.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-ref-binding-mut-option.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-ref-binding-mut.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-ref-binding.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-ref-unsized.rs Fix binding unsized expressions to ref patterns 2015-03-15 19:16:04 +03:00
match-static-const-rename.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
match-str.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-struct-0.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-tag.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-unique-bind.rs Opt into box_patterns feature gate in all tests that use them. 2015-02-11 11:47:14 +01:00
match-value-binding-in-guard-3291.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
match-var-hygiene.rs ignore-test cleanup 2015-06-12 14:16:16 -04:00
match-vec-alternatives.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-vec-rvalue.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
match-with-ret-arm.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
max-min-classes.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
method-attributes.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
method-early-bound-lifetimes-on-self.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
method-mut-self-modifies-mut-slice-lvalue.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
method-normalize-bounds-issue-20604.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
method-projection.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
method-recursive-blanket-impl.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
method-self-arg-aux1.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
method-self-arg-aux2.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
method-self-arg-trait.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
method-self-arg.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
method-two-trait-defer-resolution-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
method-two-trait-defer-resolution-2.rs Fix some typos. 2015-04-15 13:37:55 +02:00
method-two-traits-distinguished-via-where-clause.rs std: Clean out #[deprecated] APIs 2015-03-31 15:49:57 -07:00
method-where-clause.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
mid-path-type-params.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
minmax-stability-issue-23687.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
mir_small_agg_arg.rs [MIR-trans] Fix handling of small aggregate arguments 2015-11-04 16:20:23 +01:00
mir_trans_spike1.rs New trans codepath that builds fn body from MIR instead. 2015-11-03 04:35:00 -05:00
mir_trans_switchint.rs [MIR trans] Add support for SwitchInt 2015-11-09 16:54:58 +01:00
mod-inside-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
mod-view-items.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
mod_dir_implicit.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_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_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.rs Change xfail directives in compiletests to ignore, closes #11363 2014-02-11 18:23:20 +01:00
mod_file_aux.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
mod_file_with_path_attr.rs Change xfail directives in compiletests to ignore, closes #11363 2014-02-11 18:23:20 +01:00
module-qualified-struct-destructure.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
monad.rs Removed many pointless calls to *iter() and iter_mut() 2015-06-10 21:14:03 +01:00
monomorphize-abi-alignment.rs Fallout in tests 2015-04-01 11:22:39 -04:00
monomorphized-callees-with-ty-params-3314.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
move-1-unique.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
move-2-unique.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
move-2.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
move-3-unique.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
move-4-unique.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
move-4.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
move-arg-2-unique.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
move-arg-2.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
move-arg.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
move-guard-const.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
move-nullary-fn.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
move-out-of-field.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
move-scalar.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
move-self.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
moves-based-on-type-capture-clause.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
moves-based-on-type-cross-crate.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
msvc-data-only.rs Converted test to rpass. 2015-09-25 18:48:54 -07:00
multi-let.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
multibyte.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
multidispatch-conditional-impl-not-considered.rs shift bindings to accommodate new lifetime/dtor rules. 2015-02-11 08:50:27 +01:00
multidispatch1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
multidispatch2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
multiline-comment.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
multiple-trait-bounds.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
mut-function-arguments.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
mut-in-ident-patterns.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
mut-vstore-expr.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
mutability-inherits-through-fixed-length-vec.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
mutable-alias-vec.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
mutual-recursion-group.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
namespaced-enum-emulate-flat-xc.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
namespaced-enum-emulate-flat.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
namespaced-enum-glob-import-xcrate.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
namespaced-enum-glob-import.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
namespaced-enums-xcrate.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
namespaced-enums.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
native-print-no-runtime.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
negative.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
nested-block-comment.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
nested-class.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
nested-enum-same-names.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
nested-exhaustive-match.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
nested-function-names-issue-8587.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
nested-matchs.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
nested-pattern.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
nested-vec-1.rs Regression tests for issues uncovered only post the run-pass and compile-fail tests. 2015-03-26 14:08:54 +01:00
nested-vec-2.rs Regression tests for issues uncovered only post the run-pass and compile-fail tests. 2015-03-26 14:08:54 +01:00
nested-vec-3.rs add const_fn features 2015-05-29 09:42:54 -04:00
nested_item_main.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
new-box-syntax.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
new-box.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
new-impl-syntax.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
new-import-syntax.rs
new-style-constants.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
new-style-fixed-length-vec.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
new-unicode-escapes.rs Replace usage of String::from_str with String:from 2015-06-08 16:55:35 +02:00
new-unsafe-pointers.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
newlambdas-ret-infer.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
newlambdas-ret-infer2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
newlambdas.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
newtype-polymorphic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
newtype-struct-drop-run.rs Register new snapshots 2015-04-28 17:23:45 -07:00
newtype-struct-with-dtor.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
newtype-struct-xc-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
newtype-struct-xc.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
newtype-temporary.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
newtype.rs Fallout in tests 2015-04-01 11:22:39 -04:00
nil-decl-in-foreign.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
nil-pattern.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
no-core-1.rs syntax: Implement #![no_core] 2015-08-03 17:23:01 -07:00
no-landing-pads.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
no-std-1.rs syntax: Implement #![no_core] 2015-08-03 17:23:01 -07:00
no-std-2.rs syntax: Implement #![no_core] 2015-08-03 17:23:01 -07:00
no-std-3.rs syntax: Implement #![no_core] 2015-08-03 17:23:01 -07:00
non-built-in-quote.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
non-legacy-modes.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
nondrop-cycle.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
nul-characters.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
nullable-pointer-ffi-compat.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
nullable-pointer-iotareduction.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
nullable-pointer-opt-closures.rs Extend the nullable pointer optimization to captured vars of closures 2015-04-28 19:24:16 -04:00
nullable-pointer-size.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
nullary-or-pattern.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
numeric-method-autoexport.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
object-lifetime-default-default-to-static.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
object-lifetime-default-from-ref-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
object-lifetime-default-from-rptr-box.rs Transition to the new object lifetime defaults, replacing the old 2015-07-14 19:36:15 -04:00
object-lifetime-default-from-rptr-mut.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
object-lifetime-default-from-rptr-struct.rs Transition to the new object lifetime defaults, replacing the old 2015-07-14 19:36:15 -04:00
object-lifetime-default-from-rptr.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
object-method-numbering.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
object-one-type-two-traits.rs rollup merge of #23741: alexcrichton/remove-int-uint 2015-03-27 10:10:05 -07:00
object-safety-sized-self-by-value-self.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
object-safety-sized-self-generic-method.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
object-safety-sized-self-return-Self.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
objects-coerce-freeze-borrored.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
objects-owned-object-borrowed-method-headerless.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
objects-owned-object-owned-method.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
once-move-out-on-heap.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
one-tuple.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
opeq.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
operator-associativity.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
operator-multidispatch.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
operator-overloading.rs Fallout in tests 2015-04-01 11:22:39 -04:00
option-ext.rs std: Clean out #[deprecated] APIs 2015-03-31 15:49:57 -07:00
option-unwrap.rs Register new snapshots 2015-04-28 17:23:45 -07:00
or-pattern.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
order-drop-with-match.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
out-of-stack.rs Remove morestack support 2015-08-10 16:35:44 -07:00
out-pointer-aliasing.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
output-slot-variants.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
over-constrained-vregs.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
overloaded-autoderef-count.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
overloaded-autoderef-indexing.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-autoderef-order.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-autoderef-vtable.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
overloaded-autoderef-xcrate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-autoderef.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
overloaded-calls-object-one-arg.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-calls-object-two-args.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-calls-object-zero-args.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-calls-param-vtables.rs rollup merge of #23282: nikomatsakis/fn-trait-inheritance 2015-03-24 14:50:44 -07:00
overloaded-calls-simple.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-calls-zero-args.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-deref-count.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-deref.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
overloaded-index-assoc-list.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
overloaded-index-autoderef.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-index-in-field.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded-index.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
overloaded_deref_with_ref_pattern.rs Made ref pattern bindings correctly pick Deref or DerefMut 2015-06-09 16:02:00 +02:00
overloaded_deref_with_ref_pattern_issue15609.rs Made ref pattern bindings correctly pick Deref or DerefMut 2015-06-09 16:02:00 +02:00
owned-implies-static.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
packed-struct-borrow-element.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
packed-struct-generic-layout.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
packed-struct-generic-size.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
packed-struct-layout.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
packed-struct-match.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
packed-struct-size-xc.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
packed-struct-size.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
packed-struct-vec.rs Re-enable test on Android 2015-04-29 14:34:45 -07:00
packed-tuple-struct-layout.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
packed-tuple-struct-size.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
panic-in-dtor-drops-fields.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
parallel-codegen-closures.rs this fixes a bitrig break in the parallel codegen closures test 2015-06-23 11:08:56 -07:00
parameterized-trait-with-bounds.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
paren-free.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
parse-assoc-type-lt.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
parse-complex-macro-invoc-op.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
parse-panic.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
pat-ranges.rs Add tests for parsing of patterns 2015-04-03 05:56:27 +03:00
path.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
pattern-bound-var-in-for-each.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
pattern-in-closure.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
placement-in-syntax.rs Add test of placement-in syntax, analogous to new-box-syntax.rs 2015-07-22 15:34:01 +02:00
placement-new-arena.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
pred-not-bool.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
priv-impl-prim-ty.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
privacy-ns.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
privacy-reexport.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
privacy1.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
private-class-field.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
private-method.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
process-exit.rs std: Add a process::exit function 2015-03-31 14:46:11 -07:00
process-remove-from-env.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
process-sigpipe.rs sys/unix/process: Reset signal behavior before exec 2015-06-22 00:55:42 -04:00
process-spawn-with-unicode-params.rs Remove references to old_{path,io} 2015-04-21 08:16:03 -07:00
project-defer-unification.rs New tests --- check that wf relation is being checked in various positions 2015-08-12 17:57:58 -04:00
ptr-coercion.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
pub-extern-privacy.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
pub-item-inside-macro.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
pub-method-inside-macro.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
pub-use-xcrate.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
pub_use_mods_xcrate_exe.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
pure-sum.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
purity-infer.rs fix rpass tests 2015-01-05 17:22:16 -05:00
range-type-infer.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
range.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
ranges-precedence.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
raw-fat-ptr.rs implement raw fat pointer ops 2015-09-06 16:11:38 +03:00
raw-str.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
rcvr-borrowed-to-region.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
rcvr-borrowed-to-slice.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
readalias.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
realloc-16687.rs Use vec![elt; n] where possible 2015-07-09 11:05:32 +02:00
rec-align-u32.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
rec-align-u64.rs Add netbsd amd64 support 2015-07-01 19:09:14 -07:00
rec-auto.rs std: Rename strbuf operations to string 2014-05-27 12:59:31 -07:00
rec-extend.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
rec-tup.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
rec.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
record-pat.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
reexport-should-still-link.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
reexport-star.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
reexport-test-harness-main.rs testsuite: implement #[reexport_test_harness_name] to get access to the 2014-08-09 13:00:58 +10:00
reexported-static-methods-cross-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-addr-of-interior-of-unique-box.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-addr-of-ret.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-assoc-type-region-bound.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
regions-assoc-type-static-bound.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
regions-borrow-at.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-borrow-evec-fixed.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-borrow-evec-uniq.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-borrow-uniq.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-bot.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-bound-lists-feature-gate-2.rs Fallout: tests. As tests frequently elide things, lots of changes 2015-02-18 10:25:28 -05:00
regions-bound-lists-feature-gate.rs Fallout: tests. As tests frequently elide things, lots of changes 2015-02-18 10:25:28 -05:00
regions-close-over-type-parameter-successfully.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-copy-closure.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-creating-enums2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-creating-enums5.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-debruijn-of-object.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
regions-dependent-addr-of.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-dependent-autofn.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
regions-dependent-autoslice.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-dependent-let-ref.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-early-bound-lifetime-in-assoc-fn.rs Fallout in tests 2015-04-02 13:24:46 -04:00
regions-early-bound-trait-param.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
regions-early-bound-used-in-bound-method.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-early-bound-used-in-bound.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-early-bound-used-in-type-param.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-escape-into-other-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-expl-self.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-fn-subtyping-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-fn-subtyping.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-free-region-outlives-static-outlives-free-region.rs fix accidental reversal of 'static, and add a test 2015-08-21 11:44:20 -04:00
regions-infer-borrow-scope-addr-of.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-infer-borrow-scope-view.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-infer-borrow-scope-within-loop-ok.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-infer-borrow-scope.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-infer-call-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-infer-call.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-infer-contravariance-due-to-ret.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-infer-reborrow-ref-mut-recurse.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-infer-region-in-fn-but-not-type.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-infer-static-from-proc.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-issue-21422.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
regions-issue-22246.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
regions-lifetime-nonfree-late-bound.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-lifetime-static-items-enclosing-scopes.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
regions-link-fn-args.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-mock-tcx.rs Fallout in tests 2015-04-01 11:22:39 -04:00
regions-mock-trans.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-no-bound-in-argument-cleanup.rs Register new snapshots 2015-04-28 17:23:45 -07:00
regions-no-variance-from-fn-generics.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-nullary-variant.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-params.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-reassign-let-bound-pointer.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-reassign-match-bound-pointer.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-refcell.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-relate-bound-regions-on-closures-to-inference-variables.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-return-interior-of-option.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-scope-chain-example.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
regions-self-impls.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-self-in-enums.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-simple.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-static-bound.rs implement 'a:'static region bounds 2015-07-20 00:16:35 +03:00
regions-static-closure.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
regions-trait-object-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
regions-variance-contravariant-use-contravariant.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
regions-variance-covariant-use-covariant.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
repeat-expr-in-static.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
repeated-vector-syntax.rs Implement pretty-printing of .. and update tests. 2015-02-05 18:09:12 +01:00
resolve-issue-2428.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
resolve-pseudo-shadowing.rs resolve: don't speculatively create freevars when resolving 2015-11-03 21:08:42 +02:00
resource-assign-is-not-copy.rs Register new snapshots 2015-04-28 17:23:45 -07:00
resource-destruct.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
resource-in-struct.rs Register new snapshots 2015-04-28 17:23:45 -07:00
ret-bang.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
ret-none.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
return-from-closure.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
return-nil.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
rfc-1014-2.rs std: Migrate to the new libc 2015-11-09 22:55:50 -08:00
rfc-1014.rs std: Migrate to the new libc 2015-11-09 22:55:50 -08:00
running-with-no-runtime.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
rust-log-filter.rs rollup merge of #24385: aturon/unstable-scoped 2015-04-14 10:59:55 -07:00
segfault-no-out-of-stack.rs Remove morestack support 2015-08-10 16:35:44 -07:00
self-impl.rs Work with assoc types in a super trait. 2015-04-07 18:03:07 +12:00
self-in-mut-slot-default-method.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
self-in-mut-slot-immediate-value.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
self-re-assign.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
self-shadowing-import.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
self-type-param.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
semi-after-macro-ty.rs syntax: Allow semi tokens after macro ty/path 2015-07-12 15:53:04 -07:00
send-is-not-static-par-for.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
send-resource.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
send-type-inference.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
send_str_hashmap.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
send_str_treemap.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
sendable-class.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
sendfn-is-a-block.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
sendfn-spawn-with-fn-arg.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
sepcomp-cci.rs Change tests per RFC 246 (const vs static) 2015-10-03 00:01:49 +09:00
sepcomp-extern.rs test: Fix some tests to run with musl 2015-04-28 09:35:22 -07:00
sepcomp-fns-backwards.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
sepcomp-fns.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
sepcomp-lib-lto.rs Disable run-pass/sepcomp-lib-lto.rs on Android until #18800 is fixed 2015-02-23 23:42:42 -08:00
sepcomp-lib.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
sepcomp-statics.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
sepcomp-unwind.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
seq-compare.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
shadow.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
shebang.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
shift-near-oflo.rs allow constant evaluation of function calls 2015-10-19 13:13:02 +02:00
shift-various-types.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
shift.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
show-boxed-slice.rs Switched to Box::new in many places. 2015-03-03 21:05:55 +01:00
signal-exit-status.rs test: Fix fallout in run-pass tests 2015-04-14 10:14:19 -07:00
signed-shift-const-eval.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
sigpipe-should-be-ignored.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
simd-generics.rs Fix existing tests for new #[repr(simd)]. 2015-08-17 14:41:40 -07:00
simd-intrinsic-generic-arithmetic.rs Add tests for various intrinsic behaviours. 2015-08-17 14:41:40 -07:00
simd-intrinsic-generic-cast.rs Remove executable permission from .rs files 2015-11-09 09:28:51 -05:00
simd-intrinsic-generic-comparison.rs Add tests for various intrinsic behaviours. 2015-08-17 14:41:40 -07:00
simd-intrinsic-generic-elements.rs Add tests for various intrinsic behaviours. 2015-08-17 14:41:40 -07:00
simd-issue-10604.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
simd-size-align.rs Fix existing tests for new #[repr(simd)]. 2015-08-17 14:41:40 -07:00
simd-type.rs Fix existing tests for new #[repr(simd)]. 2015-08-17 14:41:40 -07:00
simple-generic-match.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
simple-generic-tag.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
simple-infer.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
simple-match-generic-tag.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
single-derive-attr-with-gate.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
size-and-align.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
sized-borrowed-pointer.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
sized-owned-pointer.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
slice-2.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
slice-of-zero-size-elements.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
slice-panic-1.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
slice-panic-2.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
slice.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
slowparse-bstring.rs Use only 400000 characters to test slow string parsing. 2014-08-21 16:25:04 -07:00
slowparse-string.rs Use only 400000 characters to test slow string parsing. 2014-08-21 16:25:04 -07:00
small-enum-range-edge.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
small-enums-with-fields.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
smallest-hello-world.rs Fix up tests and docs. 2015-10-19 18:54:38 -07:00
snake-case-no-lowercase-equivalent.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
spawn-fn.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
spawn-types.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
spawn.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
spawn2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
spawning-with-debug.rs Fallout from stabilization 2015-01-06 14:57:52 -08:00
stable-addr-of.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
static-fn-inline-xc.rs Unquote all crate names without underscores 2015-03-27 10:58:12 -07:00
static-fn-trait-xc.rs Unquote all crate names without underscores 2015-03-27 10:58:12 -07:00
static-function-pointer-xc.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
static-function-pointer.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
static-impl.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
static-method-in-trait-with-tps-intracrate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
static-method-xcrate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
static-methods-in-traits.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
static-methods-in-traits2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
static-mut-foreign.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
static-mut-xc.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
static-recursive.rs Allow writing types which "can't" be instantiated. 2015-07-24 19:18:16 -07:00
std-sync-right-kind-impls.rs std: Stabilize/deprecate features for 1.4 2015-09-11 09:48:48 -07:00
str-concat.rs rustc: Remove &str indexing from the language. 2014-07-01 19:12:29 -07:00
str-multiline.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
string-escapes.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
string-self-append.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
struct-aliases-xcrate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
struct-aliases.rs use the correct substs when checking struct patterns 2015-08-17 18:22:00 +03:00
struct-destructuring-cross-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
struct-like-variant-construct.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
struct-like-variant-match.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
struct-lit-functional-no-fields.rs Remove all i suffixes 2015-01-30 04:38:54 +01: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 Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
struct-order-of-eval-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
struct-order-of-eval-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
struct-order-of-eval-3.rs add const_fn features 2015-05-29 09:42:54 -04:00
struct-order-of-eval-4.rs add const_fn features 2015-05-29 09:42:54 -04:00
struct-partial-move-1.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
struct-partial-move-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
struct-pattern-matching.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
struct-return.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
struct-variant-field-visibility.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
struct_variant_xc.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
struct_variant_xc_match.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
structured-compare.rs Fallout in tests 2015-04-01 11:22:39 -04:00
super-fast-paren-parsing.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
super.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
supertrait-default-generics.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
supported-cast.rs Fix test fallout, and add some rather comprehensive tests. 2015-05-19 17:42:14 +03:00
svh-add-comment.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
svh-add-doc.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
svh-add-macro.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
svh-add-nothing.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
svh-add-redundant-cfg.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
svh-add-whitespace.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
swap-1.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
swap-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
swap-overlapping.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
sync-send-atomics.rs Add regression test for atomics being Send + Sync 2015-07-16 00:46:04 -04:00
sync-send-in-std.rs Add test for LookupHost iterator Send/Sync traits 2015-08-24 23:14:56 +02:00
sync-send-iterators-in-libcollections.rs Add unsafe Send and Sync impls to VecDeque's Drain<T> 2015-10-08 09:49:32 -04:00
sync-send-iterators-in-libcore.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
syntax-extension-cfg.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
syntax-extension-source-utils.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
syntax-trait-polarity.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
tag-align-dyn-u64.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
tag-align-dyn-variants.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
tag-align-shape.rs Remove integer suffixes where the types in compiled code are identical. 2015-03-05 12:38:33 +05:30
tag-align-u64.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
tag-disr-val-shape.rs s/Show/Debug/g 2015-01-29 07:49:02 -05:00
tag-exports.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
tag-in-block.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
tag-variant-disr-type-mismatch.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
tag-variant-disr-val.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
tag.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
tail-call-arg-leak.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
tail-cps.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
tail-direct.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
task-comm-0.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
task-comm-1.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
task-comm-3.rs Squeeze the last bits of tasks in documentation in favor of thread 2015-05-09 02:24:18 +09:00
task-comm-4.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
task-comm-5.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
task-comm-6.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
task-comm-7.rs rollup merge of #24385: aturon/unstable-scoped 2015-04-14 10:59:55 -07:00
task-comm-9.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
task-comm-10.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
task-comm-11.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
task-comm-12.rs Squeeze the last bits of tasks in documentation in favor of thread 2015-05-09 02:24:18 +09:00
task-comm-13.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
task-comm-14.rs Squeeze the last bits of tasks in documentation in favor of thread 2015-05-09 02:24:18 +09:00
task-comm-15.rs Squeeze the last bits of tasks in documentation in favor of thread 2015-05-09 02:24:18 +09:00
task-comm-16.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
task-comm-17.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
task-comm-chan-nil.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
task-life-0.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
task-spawn-move-and-copy.rs rollup merge of #24385: aturon/unstable-scoped 2015-04-14 10:59:55 -07:00
task-stderr.rs Test fixes and rebase conflicts, round 1 2015-04-21 16:17:24 -07:00
tcp-stress.rs Add netbsd amd64 support 2015-07-01 19:09:14 -07:00
terminate-in-initializer.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
test-fn-signature-verification-for-explicit-return-type.rs Require feature attributes, and add them where necessary 2015-03-23 14:40:26 -07:00
test-main-not-dead-attr.rs Mark main-like functions allow(dead_code) in tests 2015-08-24 20:28:24 -04:00
test-main-not-dead.rs Mark main-like functions allow(dead_code) in tests 2015-08-24 20:28:24 -04:00
test-runner-hides-buried-main.rs Move main removal to its own pass in --test mode 2015-08-24 20:28:24 -04:00
test-runner-hides-main.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
test-runner-hides-start.rs Remove #[start] as well as #[main] in --test 2015-08-24 20:28:24 -04:00
test-should-fail-good-message.rs Rollup merge of #23385 - tamird:cleanup-whitespace, r=alexcrichton 2015-03-17 15:21:22 +05:30
threads.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
tls-dtors-are-run-in-a-static-binary.rs std: Run TLS destructors in a statically linked binary 2015-09-01 11:03:28 -07:00
trailing-comma.rs rollup merge of #23794: brson/slicegate 2015-03-27 16:09:52 -07:00
trait-bounds-basic.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-bounds-impl-comparison-duplicates.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
trait-bounds-in-arc.rs Conver reborrows to .iter() calls where appropriate 2015-06-11 13:56:07 +01:00
trait-bounds-on-structs-and-enums.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-bounds-recursion.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-bounds.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-cache-issue-18209.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
trait-coercion-generic.rs Fallout in tests 2015-04-01 11:22:39 -04:00
trait-coercion.rs Remove references to old_{path,io} 2015-04-21 08:16:03 -07:00
trait-composition-trivial.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
trait-default-method-bound-subst.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-default-method-bound-subst2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-default-method-bound-subst3.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-default-method-bound-subst4.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-default-method-bound.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-default-method-xc-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-default-method-xc.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-false-ambiguity-where-clause-builtin-bound.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
trait-generic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-impl-2.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
trait-impl.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
trait-inheritance-auto-xc-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-auto-xc.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-auto.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-call-bound-inherited.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-call-bound-inherited2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-cast-without-call-to-supertrait.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-cast.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-cross-trait-call-xc.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-cross-trait-call.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-diamond.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-multiple-inheritors.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-multiple-params.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-num.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-inheritance-num0.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-inheritance-num1.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-inheritance-num2.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-inheritance-num3.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-inheritance-num5.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-inheritance-overloading-simple.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
trait-inheritance-overloading-xc-exe.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-overloading.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
trait-inheritance-self-in-supertype.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-inheritance-self.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
trait-inheritance-simple.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-static.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-static2.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
trait-inheritance-subst.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
trait-inheritance-subst2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance-visibility.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-inheritance2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-object-generics.rs Remove the deprecated box(PLACE) syntax. 2015-09-24 18:00:08 +03:00
trait-object-with-lifetime-bound.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-region-pointer-simple.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
trait-safety-ok-cc.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-safety-ok.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trait-static-method-overwriting.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
trait-to-str.rs Change some instances of .connect() to .join() 2015-07-10 19:40:46 -04:00
trait-where-clause-vs-impl.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
trait-with-bounds-default.rs Exise 'owned pointer' from the codebase 2015-06-09 16:26:21 -04:00
traits-assoc-type-in-supertrait.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
traits-conditional-dispatch.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
traits-conditional-model-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
traits-default-method-macro.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
traits-default-method-mut.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
traits-default-method-self.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
traits-default-method-trivial.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
traits-impl-object-overlap-issue-23853.rs If we find a blanket impl for Trait but we're matching on an object 2015-04-06 06:12:51 -04:00
traits-issue-22019.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
traits-issue-22110.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
traits-issue-22655.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
traits-issue-23003.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
traits-issue-26339.rs rustc: compute the vtable base of a supertrait during selection. Fixes #26339. 2015-07-04 17:51:30 +03:00
traits-multidispatch-infer-convert-target.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
traits-negative-impls.rs add a run-pass test that used to fail 2015-01-16 08:18:56 +01:00
traits-repeated-supertrait.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
trans-tag-static-padding.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
transmute-non-immediate-to-immediate.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
trivial-message.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
trivial_casts.rs Change lint names to plurals 2015-03-25 10:06:13 +13:00
tup.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
tuple-index-fat-types.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
tuple-index.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
tuple-struct-construct.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
tuple-struct-constructor-pointer.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
tuple-struct-destructuring.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
tuple-struct-matching.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
tuple-struct-trivial.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
two-macro-use.rs Unignore some tests in stage1 2015-05-13 19:58:49 -04:00
tydesc-name.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
type-id-higher-rank.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
type-in-nested-module.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
type-macros-hlist.rs Fix last nits 2015-08-04 16:05:07 -07:00
type-macros-simple.rs Actually commit tests 2015-08-04 16:05:07 -07:00
type-namespace.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
type-param-constraints.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
type-param.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
type-params-in-for-each.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
type-ptr.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
type-sizes.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
type-use-i1-versus-i8.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
typeck-macro-interaction-issue-8852.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
typeck_type_placeholder_1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
typeclasses-eq-example-static.rs cleanup: s/impl Copy/#[derive(Copy)]/g 2015-01-25 11:20:38 -05:00
typeclasses-eq-example.rs cleanup: s/impl Copy/#[derive(Copy)]/g 2015-01-25 11:20:38 -05:00
typeid-intrinsic.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
typestate-cfg-nesting.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
typestate-multi-decl.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
u8-incr-decr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
u8-incr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
u32-decr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
ufcs-explicit-self.rs Fallout in tests 2015-04-01 11:22:39 -04:00
ufcs-polymorphic-paths.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
ufcs-trait-object.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
ufcs-type-params.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
uint.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unary-minus-suffix-inference.rs Revert "Convert negate_unsigned feature gate to a warning" 2015-09-18 20:22:16 +03:00
unboxed-closures-all-traits.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-blanket-fn-mut.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-blanket-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-boxed.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
unboxed-closures-by-ref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-call-fn-autoderef.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-call-sugar-autoderef.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-call-sugar-object-autoderef.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unboxed-closures-call-sugar-object.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unboxed-closures-counter-not-moved.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-cross-crate.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-direct-sugary-call.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unboxed-closures-drop.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-extern-fn-hr.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-extern-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-fn-as-fnmut-and-fnonce.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-fnmut-as-fnonce.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-generic.rs Strip all leading/trailing newlines 2015-03-15 09:08:21 -07:00
unboxed-closures-infer-argument-types-from-expected-bound.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
unboxed-closures-infer-argument-types-from-expected-object-type.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
unboxed-closures-infer-argument-types-with-bound-regions-from-expected-bound.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
unboxed-closures-infer-fnmut-calling-fnmut.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-infer-fnmut-move.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-infer-fnmut.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-infer-fnonce-move.rs Register new snapshots 2015-04-28 17:23:45 -07:00
unboxed-closures-infer-fnonce.rs Register new snapshots 2015-04-28 17:23:45 -07:00
unboxed-closures-infer-kind.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-infer-recursive-fn.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-infer-upvar.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-manual-impl.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
unboxed-closures-monomorphization.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unboxed-closures-move-mutable.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unboxed-closures-move-some-upvars-in-by-ref-closure.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-prelude.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unboxed-closures-simple.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-single-word-env.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-static-call-fn-once.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unboxed-closures-sugar-object.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unboxed-closures-unique-type-id.rs Cleanup: rename middle::ty::sty and its variants. 2015-06-12 11:07:16 -07:00
unboxed-closures-zero-args.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unify-return-ty.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
uninit-empty-types.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
uninstantiable-struct.rs remove the is_instantiable check 2015-08-31 23:54:15 +03:00
uniq-self-in-mut-slot.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-assign-copy.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-assign-drop.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-assign-generic.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-assign.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-autoderef-field.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-autoderef-index.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-cmp.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
unique-containing-tag.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unique-create.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unique-decl-init-copy.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-decl-init.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-decl-move.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-decl.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-deref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-destructure.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-drop-complex.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unique-fn-arg-move.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-fn-arg-mut.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-fn-arg.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-fn-ret.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-generic-assign.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unique-in-tag.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unique-in-vec-copy.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-in-vec.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
unique-init.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unique-kinds.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
unique-log.rs Add : Box<_> or ::Box<_> type annotations to various places. 2015-03-03 20:29:01 +01:00
unique-match-discrim.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unique-move-drop.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-move-temp.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-move.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-mutable.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-object-move.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unique-pat-2.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-pat-3.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unique-pat.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-rec.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-send-2.rs Fallout: move from scoped to spawn 2015-04-14 08:15:45 -07:00
unique-send.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unique-swap.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unit-like-struct-drop-run.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unit-like-struct.rs
unit.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unnamed_argument_mode.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
unreachable-code-1.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unreachable-code.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unsafe-coercion.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unsafe-fn-called-from-unsafe-blk.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unsafe-fn-called-from-unsafe-fn.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unsafe-pointer-assignability.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
unsized.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
unsized2.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
unsized3.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
unused-move-capture.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unused-move.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
unwind-resource.rs test: Make two tests less flaky on windows 2015-02-23 09:53:03 -08:00
unwind-unique.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
use-crate-name-alias.rs Unquote all crate names without underscores 2015-03-27 10:58:12 -07:00
use-import-export.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
use-mod.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
use-trait-before-def.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
use-uninit-match.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
use-uninit-match2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
use.rs rustc: rename multiple imports in a list 2015-08-08 11:54:15 -07:00
use_inline_dtor.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
utf8-bom.rs Model lexer: Fix remaining issues 2015-04-21 12:02:12 +02:00
utf8.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
utf8_chars.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
utf8_idents.rs test: Fix fallout in tests 2015-04-21 11:37:43 -07:00
variadic-ffi.rs trans: Stop informing LLVM about dllexport 2015-08-10 18:20:42 -07:00
variance-intersection-of-ref-and-opt-ref.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
variance-vec-covariant.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
variant-attributes.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
variant-structs-trivial.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
vec-concat.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
vec-dst.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
vec-fixed-length.rs Remove several FIXMEs 2015-05-04 20:05:40 +02:00
vec-growth.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec-late-init.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
vec-macro-no-std.rs syntax: Implement #![no_core] 2015-08-03 17:23:01 -07:00
vec-macro-repeat.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec-macro-rvalue-scope.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec-macro-with-brackets.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
vec-macro-with-trailing-comma.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec-matching-autoslice.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
vec-matching-fixed.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec-matching-fold.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec-matching-legal-tail-element-borrow.rs rollup merge of #23794: brson/slicegate 2015-03-27 16:09:52 -07:00
vec-matching.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec-push.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
vec-repeat-with-cast.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
vec-slice-drop.rs Register new snapshots 2015-04-28 17:23:45 -07:00
vec-slice.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec-tail-matching.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
vec-to_str.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
vec_cycle.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
vec_cycle_wrapped.rs Remove #[derive(Show)] 2015-10-18 19:12:09 +03:00
vector-no-ann-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
vector-sort-panic-safe.rs Fallout in tests and docs from feature renamings 2015-06-17 09:07:16 -07:00
visible-private-types-feature-gate.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
wait-forked-but-failed-child.rs std: Migrate to the new libc 2015-11-09 22:55:50 -08:00
warn-ctypes-inhibit.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
weak-lang-item.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
weird-exit-code.rs std: Refactor process exit code handling slightly 2015-11-06 14:40:43 -08:00
weird-exprs.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
wf-bound-region-in-object-type.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
where-clause-bounds-inconsistency.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
where-clause-early-bound-lifetimes.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
where-clause-method-substituion.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
where-clause-region-outlives.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
where-clauses-cross-crate.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
where-clauses-lifetimes.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
where-clauses-method.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
where-clauses-unboxed-closures.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
where-clauses.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
where-for-self.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
while-cont.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
while-flow-graph.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
while-label.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
while-let.rs Add missing stability markings to BinaryHeap. 2015-09-01 01:22:57 -07:00
while-loop-constraints-2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
while-prelude-drop.rs Replace usage of String::from_str with String:from 2015-06-08 16:55:35 +02:00
while-with-break.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
while.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
wrapping-int-api.rs implement RFC 1229 2015-10-13 17:01:03 +02:00
writealias.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
x86stdcall.rs Add netbsd amd64 support 2015-07-01 19:09:14 -07:00
x86stdcall2.rs Correct type definition of HANDLE. 2015-09-17 12:03:27 +03:00
xcrate-address-insignificant.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00
xcrate-associated-type-defaults.rs Actually encode default associated types 2015-06-30 22:03:25 +03:00
xcrate-static-addresses.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
xcrate-trait-lifetime-param.rs Fix fallout of removing quotes in crate names 2015-03-27 11:43:40 -07:00
xcrate-unit-struct.rs rustdoc: Replace no-pretty-expanded with pretty-expanded 2015-03-23 14:40:26 -07:00
yield.rs Fallout from stabilization 2015-02-17 15:14:17 -08:00
yield1.rs Fallout from stabilization 2015-02-17 15:14:17 -08:00
yield2.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
zero-size-type-destructors.rs Use assert_eq! instead of assert! in tests 2015-06-13 14:55:55 +03:00
zero-sized-tuple-struct.rs Translate constructor arguments for zero-sized tuple structs 2015-08-31 23:57:41 +12:00
zero_sized_subslice_match.rs Remove pretty-expanded from failing tests 2015-04-08 17:21:34 -07:00