about summary refs log tree commit diff
path: root/src/test/run-pass/realloc-16687.rs
AgeCommit message (Expand)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-20Replace usages of ptr::offset with ptr::{add,sub}.Corey Farwell-4/+4
2018-08-05Fix test/run-passvarkor-1/+1
2018-06-18Rename OOM to allocation errorSimon Sapin-3/+5
2018-06-11Remove some unneeded castsSimon Sapin-2/+2
2018-06-11Remove alloc::Opaque and use *mut u8 as pointer type for GlobalAllocMike Hommey-2/+2
2018-05-30Pass a `Layout` to `oom`Mike Hommey-3/+3
2018-04-22Replace GlobalAlloc::oom with a lang itemSteven Fackler-3/+3
2018-04-17stabilize `nonnull_cast` featuretinaun-1/+1
2018-04-12Rename alloc::Void to alloc::OpaqueSimon Sapin-2/+2
2018-04-12Use NonNull<Void> instead of *mut u8 in the Alloc traitMike Hommey-9/+9
2018-04-12Remove the now-unit-struct AllocErr parameter of oom()Simon Sapin-2/+2
2017-07-05rustc: Implement the #[global_allocator] attributeAlex Crichton-34/+41
2015-07-09Use vec![elt; n] where possibleUlrik Sverdrup-2/+1
2015-06-17Fallout in tests and docs from feature renamingsAlex Crichton-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-14/+14
2015-03-23Require feature attributes, and add them where necessaryBrian Anderson-0/+2
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-9/+9
2015-02-18Update suffixes en masse in tests using `perl -p -i -e`Niko Matsakis-9/+9
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-10/+10
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-8/+8
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-2/+2
2015-01-03Remove deprecated functionalityAlex Crichton-1/+2
2014-11-18std: Stabilize std::fmtAlex Crichton-5/+5
2014-11-01bubble up out-of-memory errors from liballocDaniel Micay-0/+2
2014-10-25Fix spelling mistakes in comments.Joseph Crail-1/+1
2014-10-08saner parameter order for reallocation functionsDaniel Micay-15/+14
2014-09-23Add deallocate calls to the realloc-16687.rs test.Felix S. Klock II-4/+17
2014-09-16Fallout from renamingAaron Turon-1/+1
2014-08-23Test case to illustate/reproduce bug.Felix S. Klock II-0/+167