about summary refs log tree commit diff
path: root/src/tools/miri/tests
diff options
context:
space:
mode:
authorEduardo Sánchez Muñoz <eduardosm-dev@e64.io>2025-02-01 16:26:13 +0100
committerEduardo Sánchez Muñoz <eduardosm-dev@e64.io>2025-02-01 16:26:13 +0100
commiteab3528b07d3a57bc7b2baafd478bf0ca18d0efe (patch)
treeb5a5d0675c994ab425d10667705b9cfd34b40a67 /src/tools/miri/tests
parent13f3132aed9748116f8e0052abb8db3d19d82cd1 (diff)
downloadrust-eab3528b07d3a57bc7b2baafd478bf0ca18d0efe.tar.gz
rust-eab3528b07d3a57bc7b2baafd478bf0ca18d0efe.zip
Test getrandom 0.3
Diffstat (limited to 'src/tools/miri/tests')
-rw-r--r--src/tools/miri/tests/pass-dep/getrandom.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/miri/tests/pass-dep/getrandom.rs b/src/tools/miri/tests/pass-dep/getrandom.rs
index a5bc5ec7079..d359730e7f9 100644
--- a/src/tools/miri/tests/pass-dep/getrandom.rs
+++ b/src/tools/miri/tests/pass-dep/getrandom.rs
@@ -3,7 +3,7 @@
 //@revisions: isolation no_isolation
 //@[no_isolation]compile-flags: -Zmiri-disable-isolation
 
-/// Test direct calls of getrandom 0.1 and 0.2.
+/// Test direct calls of getrandom 0.1, 0.2 and 0.3.
 fn main() {
     let mut data = vec![0; 16];
 
@@ -13,4 +13,6 @@ fn main() {
     getrandom_01::getrandom(&mut data).unwrap();
 
     getrandom_02::getrandom(&mut data).unwrap();
+
+    getrandom_03::fill(&mut data).unwrap();
 }