]> git.lizzy.rs Git - rust.git/history - test
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / test /
2018-08-27 crw5996Refactored to not use a mutable variable
2018-08-27 crw5996Fixed #2955. Added value to determine whether or not...
2016-04-15 Scott OlsonMerge pull request #3 from killercup/feature/tests
2016-04-14 Pascal HertleifAdd Compile Test
2016-04-13 Scott Olsonreadme: Add build and run instructions.
2016-04-13 Scott Olsonreport: Numerous fixes. :heart: @DanielKeep, @programbl...
2016-04-07 Scott OlsonHandle missing allocations in Memory::dump.
2016-04-07 Scott OlsonImplement drop/deallocation for Box.
2016-04-07 Scott OlsonNormalize test file modes.
2016-04-06 Scott OlsonPartially implement reallocation (e.g. for growing...
2016-04-06 Scott OlsonAdd test for out-of-bounds reads.
2016-04-06 Scott OlsonFix undef mask initialization and test undef reads.
2016-04-06 Scott OlsonAdd test for invalid booleans.
2016-04-06 Scott OlsonAdd test for comparing ptrs into different allocs.
2016-04-06 Scott OlsonAdd an Rc reference cycle test.
2016-04-06 Scott OlsonAdd a test for overwriting part of a relocation.
2016-04-06 Scott OlsonImplement a naive, slow version of undef mask copying.
2016-04-06 Scott OlsonSwitch to bitmask-based undef mask.
2016-03-29 Scott OlsonHandle custom discriminant values and detect invalid...
2016-03-28 Scott OlsonAdd a basic test for specialization.
2016-03-22 Scott OlsonAdd a commented-out RefCell test.
2016-03-22 Scott OlsonAdd a fat byte-slice coercion test.
2016-03-21 Scott OlsonAdd simple test of assert_eq!.
2016-03-21 Scott OlsonAdd tests involving Rc, Arc, and Cell.
2016-03-21 Scott OlsonFix typo in test name.
2016-03-21 Scott OlsonSupport intrinsics::overflowing_sub for vec![x; n].
2016-03-21 Scott OlsonSupport [x; N] array repeat rvalues.
2016-03-21 Scott OlsonAdd vec::IntoIter and fold test.
2016-03-21 Scott OlsonUncomment now-working vec! macro test.
2016-03-21 Scott OlsonFix vec test compile error.
2016-03-21 Scott OlsonAdd slice iterator for-loop test.
2016-03-21 Scott OlsonAdd array indexing for-loop test.
2016-03-21 Scott OlsonImplement length access and indexing for fixed-sized...
2016-03-21 Scott OlsonAdd first test for std::vec::Vec.
2016-03-19 Scott OlsonImplement bytestring literals.
2016-03-19 Scott OlsonImplement string literals.
2016-03-18 Scott OlsonAdd initial support for closures.
2016-03-17 Scott OlsonFix boolean tests and clean up code.
2016-03-17 Scott OlsonWIP: Support array indexing including a `get_unchecked...
2016-03-15 Scott OlsonImplement fixed-sized arrays.
2016-03-15 Scott OlsonImplement the size_of intrinsic.
2016-03-15 Scott OlsonTest the unstable box syntax.
2016-03-15 Scott OlsonImplement Rvalue::Box allocations.
2016-03-14 Scott OlsonProperly handle generic fn calls.
2016-03-13 Scott OlsonReimplement cross-crate function calls.
2016-03-13 Scott OlsonReimplement crate-local function calls.
2016-03-13 Scott OlsonAdd support for pointers.
2016-03-13 Scott OlsonUncomment now-working test.
2016-03-13 Scott OlsonUncomment now-working test.
2016-03-13 Scott OlsonReimplement variant downcast projection.
2016-03-13 Scott OlsonReimplement field lvalue projection.
2016-03-13 Scott OlsonReimplement sum type switching.
2016-03-13 Scott OlsonWrite enum discriminants.
2016-03-13 Scott OlsonAllow switching on non-integer types.
2016-03-13 Scott OlsonAdd initial support for different int sizes.
2016-03-13 Scott OlsonUse i64 instead of i32 in tests.
2016-03-13 Scott OlsonAdd initial enum initialization support.
2016-03-13 Scott OlsonRestructure aggregates and pave the way for enums.
2016-03-13 Scott OlsonSplit tests into multiple files.
2016-03-12 Scott OlsonSupport structs and single-variant enums.
2016-03-07 Scott OlsonWrite new-value-repr branch tests over old tests.
2016-03-07 Scott OlsonSupport SwitchInt for integer types.
2016-03-07 Scott OlsonRe-add support for integer unary ops.
2016-03-07 Scott OlsonRe-add support for integer binops.
2016-03-07 Scott OlsonRemove Pointer's repr field and make it Copy.
2016-03-07 Scott OlsonReimplement 'if' conditions.
2016-03-07 Scott OlsonAdd basic bool support.
2016-03-06 Scott OlsonImplement a call stack using the new memory system.
2016-03-05 Scott OlsonRefactor integer reading and writing.
2016-03-05 Scott OlsonWIP: Add some support for tuples. Optimize memory copies.
2016-02-28 Scott OlsonWIP: Support unary integer ops again.
2016-02-28 Scott OlsonWIP: Switching to a new byte-based value representation.
2016-01-15 Scott OlsonEnable a test that works now with rustc master.
2016-01-15 Scott OlsonDisable tests that fail on rustc master due to () rvalues.
2016-01-07 Scott OlsonUpdate for changed in Rust master.
2015-12-29 Scott OlsonAdd support for references.
2015-12-29 Scott OlsonUncomment other MyOption test.
2015-12-17 Scott OlsonAdd (commented) test for basic use of std::option:...
2015-12-17 Scott OlsonImplement cross-crate fn calls by loading Mir from...
2015-11-21 Scott OlsonAdd initial support for matching on enums.
2015-11-19 Scott OlsonImplement SwitchInt (for some match expressions).
2015-11-19 Scott OlsonTest looping and recursive factorial.
2015-11-19 Scott OlsonImplement function calls.
2015-11-19 Scott OlsonHandle Goto, Panic, and If terminators properly.
2015-11-13 Scott OlsonAdd a more complicated arithmetic test.
2015-11-12 Scott OlsonImplement unary operators for integers.
2015-11-12 Scott OlsonCheck actual vs. expected values.
2015-11-12 Scott OlsonAdd more tests. Remove unecessary attributes.
2015-11-12 Scott OlsonAdd the interpreter from my rustc branch and hook it...