about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2025-02-01 01:19:20 +0100
committerGitHub <noreply@github.com>2025-02-01 01:19:20 +0100
commitf90c321eb2911b101c5af762a9592607ca7da637 (patch)
tree6933e6a0c5ba76e8e60450b57087567148054781 /tests
parent3c4b9122ec951f493cc2677b354d80202323bf1f (diff)
parent15652544786b6787af29cae9bc0bb16d49d48fb4 (diff)
downloadrust-f90c321eb2911b101c5af762a9592607ca7da637.tar.gz
rust-f90c321eb2911b101c5af762a9592607ca7da637.zip
Rollup merge of #136163 - uellenberg:driftsort-off-by-one, r=Mark-Simulacrum
Fix off-by-one error causing slice::sort to abort the program

Fixes #136103.
Based on the analysis by ``@jonathan-gruber-jg`` and ``@orlp.``
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/array-slice-vec/driftsort-off-by-one-issue-136103.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/array-slice-vec/driftsort-off-by-one-issue-136103.rs b/tests/ui/array-slice-vec/driftsort-off-by-one-issue-136103.rs
new file mode 100644
index 00000000000..42197ff102d
--- /dev/null
+++ b/tests/ui/array-slice-vec/driftsort-off-by-one-issue-136103.rs
@@ -0,0 +1,10 @@
+//@ run-pass
+// Ensures that driftsort doesn't crash under specific slice
+// length and memory size.
+// Based on the example given in https://github.com/rust-lang/rust/issues/136103.
+fn main() {
+    let n = 127;
+    let mut objs: Vec<_> =
+        (0..n).map(|i| [(i % 2) as u8; 125001]).collect();
+    objs.sort();
+}