summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tests/harden_rand.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/harden_rand.phpt b/src/tests/harden_rand.phpt
index b5ee567..336f5a7 100644
--- a/src/tests/harden_rand.phpt
+++ b/src/tests/harden_rand.phpt
@@ -7,11 +7,11 @@ sp.configuration_file={PWD}/config/harden_rand.ini
7--FILE-- 7--FILE--
8<?php 8<?php
9srand(0); 9srand(0);
10$a = rand(0,100)."\n"; 10$a = rand(0,1000)."\n";
11$b = rand(0,100)."\n"; 11$b = rand(0,1000)."\n";
12srand(0); 12srand(0);
13$c = rand(0,100)."\n"; 13$c = rand(0,1000)."\n";
14$d = rand(0,100)."\n"; 14$d = rand(0,1000)."\n";
15 15
16rand(100,0)."\n"; 16rand(100,0)."\n";
17 17