Skip to content

Commit 92def13

Browse files
Erlang R16B03 -> 20.3: random:* -> rand:*
Change-Id: Ie4922ee277d1c50b044f0f09db5e8d7809b7b21b Reviewed-on: http://review.couchbase.org/93508 Reviewed-by: Jeelan Basha Poola <[email protected]> Reviewed-by: Harsha H S Tested-by: Harsha H S
1 parent 263b2ce commit 92def13

13 files changed

+52
-52
lines changed

gc-couchbase/test/01-initial-build.t

+5-5
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,13 @@ setup_test() ->
119119

120120

121121
create_docs(From, To) ->
122-
random:seed(91, 1, 11),
122+
rand:seed(exrop, {91, 1, 11}),
123123
lists:map(
124124
fun(I) ->
125-
RandomMin = random:uniform(2000),
126-
RandomMax = RandomMin + random:uniform(167),
127-
RandomMin2 = random:uniform(1769),
128-
RandomMax2 = RandomMin2 + random:uniform(132),
125+
RandomMin = rand:uniform(2000),
126+
RandomMax = RandomMin + rand:uniform(167),
127+
RandomMin2 = rand:uniform(1769),
128+
RandomMax2 = RandomMin2 + rand:uniform(132),
129129
{[
130130
{<<"meta">>, {[{<<"id">>, iolist_to_binary(["doc", integer_to_list(I)])}]}},
131131
{<<"json">>, {[

gc-couchbase/test/02-query-params.t

+9-9
Original file line numberDiff line numberDiff line change
@@ -218,17 +218,17 @@ setup_test() ->
218218

219219

220220
create_docs(From, To) ->
221-
random:seed(91, 1, 11),
221+
rand:seed(exrop, {91, 1, 11}),
222222
lists:map(
223223
fun(I) ->
224-
RandomMin = random:uniform(2000),
225-
RandomMax = RandomMin + random:uniform(167),
226-
RandomMin2 = random:uniform(1769),
227-
RandomMax2 = RandomMin2 + random:uniform(132),
228-
RandomMin3 = random:uniform(651),
229-
RandomMax3 = RandomMin3 + random:uniform(201),
230-
RandomMin4 = random:uniform(482),
231-
RandomMax4 = RandomMin4 + random:uniform(26),
224+
RandomMin = rand:uniform(2000),
225+
RandomMax = RandomMin + rand:uniform(167),
226+
RandomMin2 = rand:uniform(1769),
227+
RandomMax2 = RandomMin2 + rand:uniform(132),
228+
RandomMin3 = rand:uniform(651),
229+
RandomMax3 = RandomMin3 + rand:uniform(201),
230+
RandomMin4 = rand:uniform(482),
231+
RandomMax4 = RandomMin4 + rand:uniform(26),
232232
{[
233233
{<<"meta">>, {[{<<"id">>, iolist_to_binary(["doc", integer_to_list(I)])}]}},
234234
{<<"json">>, {[

gc-couchbase/test/03-incremental-update.t

+5-5
Original file line numberDiff line numberDiff line change
@@ -194,13 +194,13 @@ doc_id(I) ->
194194
create_docs(From, To) ->
195195
create_docs(From, To, 0).
196196
create_docs(From, To, AddToValue) ->
197-
random:seed(91, 1, 11),
197+
rand:seed(exrop, {91, 1, 11}),
198198
lists:map(
199199
fun(I) ->
200-
RandomMin = random:uniform(2000),
201-
RandomMax = RandomMin + random:uniform(167),
202-
RandomMin2 = random:uniform(1769),
203-
RandomMax2 = RandomMin2 + random:uniform(132),
200+
RandomMin = rand:uniform(2000),
201+
RandomMax = RandomMin + rand:uniform(167),
202+
RandomMin2 = rand:uniform(1769),
203+
RandomMax2 = RandomMin2 + rand:uniform(132),
204204
{[
205205
{<<"meta">>, {[{<<"id">>, doc_id(I)}]}},
206206
{<<"json">>, {[

gc-couchbase/test/07-main-compaction.t

+5-5
Original file line numberDiff line numberDiff line change
@@ -257,13 +257,13 @@ main_index_disk_size() ->
257257

258258

259259
create_docs(From, To) ->
260-
random:seed(91, 1, 11),
260+
rand:seed(exrop, {91, 1, 11}),
261261
lists:map(
262262
fun(I) ->
263-
RandomMin = random:uniform(2000),
264-
RandomMax = RandomMin + random:uniform(167),
265-
RandomMin2 = random:uniform(1769),
266-
RandomMax2 = RandomMin2 + random:uniform(132),
263+
RandomMin = rand:uniform(2000),
264+
RandomMax = RandomMin + rand:uniform(167),
265+
RandomMin2 = rand:uniform(1769),
266+
RandomMax2 = RandomMin2 + rand:uniform(132),
267267
DocId = iolist_to_binary(["doc", integer_to_list(I)]),
268268
{[
269269
{<<"meta">>, {[{<<"id">>, DocId}]}},

gc-couchbase/test/08-replica-compaction.t

+5-5
Original file line numberDiff line numberDiff line change
@@ -300,13 +300,13 @@ replica_index_disk_size() ->
300300

301301

302302
create_docs(From, To) ->
303-
random:seed(91, 1, 11),
303+
rand:seed(exrop, {91, 1, 11}),
304304
lists:map(
305305
fun(I) ->
306-
RandomMin = random:uniform(2000),
307-
RandomMax = RandomMin + random:uniform(167),
308-
RandomMin2 = random:uniform(1769),
309-
RandomMax2 = RandomMin2 + random:uniform(132),
306+
RandomMin = rand:uniform(2000),
307+
RandomMax = RandomMin + rand:uniform(167),
308+
RandomMin2 = rand:uniform(1769),
309+
RandomMax2 = RandomMin2 + rand:uniform(132),
310310
DocId = iolist_to_binary(["doc", integer_to_list(I)]),
311311
{[
312312
{<<"meta">>, {[{<<"id">>, DocId}]}},

gc-couchbase/test/09-compaction-retry.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ create_set() ->
381381

382382
update_documents(StartId, Count, ValueGenFun) ->
383383
etap:diag("Updating " ++ integer_to_list(Count) ++ " documents"),
384-
random:seed(91, 1, 11),
384+
rand:seed(exrop, {91, 1, 11}),
385385
DocList0 = lists:map(
386386
fun(I) ->
387387
Value = ValueGenFun(I),

vtree/test/004-util.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
main(_) ->
1919
% Set the random seed once, for the whole test suite
20-
random:seed(1, 11, 91),
20+
rand:seed(exrop, {1, 11, 91}),
2121

2222
code:add_pathz(filename:dirname(escript:script_name())),
2323
etap:plan(55),

vtree/test/006-insert.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
main(_) ->
2323
% Set the random seed once. It might be reset a certain tests
24-
random:seed(1, 11, 91),
24+
rand:seed(exrop, {1, 11, 91}),
2525

2626
% Apache CouchDB doesn't have the couch_file_write_guard module
2727
try

vtree/test/007-io.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
main(_) ->
2222
% Set the random seed once, for the whole test suite
23-
random:seed(1, 11, 91),
23+
rand:seed(exrop, {1, 11, 91}),
2424

2525
% Apache CouchDB doesn't have the couch_file_write_guard module
2626
try

vtree/test/008-search.t

+8-8
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ test() ->
5555

5656

5757
test_search() ->
58-
random:seed(1, 11, 91),
58+
rand:seed(exrop, {1, 11, 91}),
5959

6060
Fd = vtree_test_util:create_file(?FILENAME),
6161
Less = fun(A, B) -> A < B end,
@@ -86,7 +86,7 @@ test_search() ->
8686

8787

8888
test_all() ->
89-
random:seed(1, 11, 91),
89+
rand:seed(exrop, {1, 11, 91}),
9090

9191
Fd = vtree_test_util:create_file(?FILENAME),
9292
Less = fun(A, B) -> A < B end,
@@ -120,7 +120,7 @@ test_all() ->
120120

121121

122122
test_count_search() ->
123-
random:seed(1, 11, 91),
123+
rand:seed(exrop, {1, 11, 91}),
124124

125125
Fd = vtree_test_util:create_file(?FILENAME),
126126
Less = fun(A, B) -> A < B end,
@@ -173,7 +173,7 @@ test_count_search() ->
173173

174174

175175
test_count_all() ->
176-
random:seed(1, 11, 91),
176+
rand:seed(exrop, {1, 11, 91}),
177177

178178
Fd = vtree_test_util:create_file(?FILENAME),
179179
Less = fun(A, B) -> A < B end,
@@ -200,7 +200,7 @@ test_count_all() ->
200200

201201

202202
test_traverse() ->
203-
random:seed(1, 11, 91),
203+
rand:seed(exrop, {1, 11, 91}),
204204

205205
Fd = vtree_test_util:create_file(?FILENAME),
206206
Less = fun(A, B) -> A < B end,
@@ -272,7 +272,7 @@ test_traverse() ->
272272

273273

274274
test_traverse_kv() ->
275-
random:seed(1, 11, 91),
275+
rand:seed(exrop, {1, 11, 91}),
276276

277277
Less = fun(A, B) -> A < B end,
278278
FoldFun = fun(Node, Acc) -> {ok, [Node|Acc]} end,
@@ -334,7 +334,7 @@ test_traverse_kv() ->
334334

335335

336336
test_traverse_all() ->
337-
random:seed(1, 11, 91),
337+
rand:seed(exrop, {1, 11, 91}),
338338

339339
Fd = vtree_test_util:create_file(?FILENAME),
340340
Less = fun(A, B) -> A < B end,
@@ -373,7 +373,7 @@ test_traverse_all() ->
373373

374374

375375
test_traverse_all_kv() ->
376-
random:seed(1, 11, 91),
376+
rand:seed(exrop, {1, 11, 91}),
377377

378378
FoldFun = fun(Node, Acc) -> {ok, [Node|Acc]} end,
379379

vtree/test/009-modify.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
main(_) ->
2323
% Set the random seed once. It might be reset a certain tests
24-
random:seed(1, 11, 91),
24+
rand:seed(exrop, {1, 11, 91}),
2525

2626
% Apache CouchDB doesn't have the couch_file_write_guard module
2727
try
@@ -208,7 +208,7 @@ test_write_nodes() ->
208208

209209
write_nodes(Insert, Expected, Message) ->
210210
% This tests depends on the values of the MBBs, hence reset the seed
211-
random:seed(1, 11, 91),
211+
rand:seed(exrop, {1, 11, 91}),
212212
Less = fun(A, B) -> A < B end,
213213
Fd = vtree_test_util:create_file(?FILENAME),
214214
NodeSize = ?ext_size(vtree_test_util:generate_kvnodes(1)),

vtree/test/010-delete.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
main(_) ->
2323
% Set the random seed once. It might be reset a certain tests
24-
random:seed(1, 11, 91),
24+
rand:seed(exrop, {1, 11, 91}),
2525

2626
% Apache CouchDB doesn't have the couch_file_write_guard module
2727
try
@@ -104,7 +104,7 @@ test_delete() ->
104104

105105

106106
test_delete_multiple() ->
107-
random:seed(1, 11, 91),
107+
rand:seed(exrop, {1, 11, 91}),
108108
Fd = vtree_test_util:create_file(?FILENAME),
109109

110110
Vtree1 = #vtree{

vtree/test/vtree_test_util.erl

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ generate_kvnodes(Num) ->
1414
random_kvnode(I) ->
1515
Max = 1000,
1616
{A, B, C, D, E, F, G, H} = {
17-
random:uniform(Max), random:uniform(Max), random:uniform(Max),
18-
random:uniform(Max), random:uniform(Max), random:uniform(Max),
19-
random:uniform(Max), random:uniform(Max)},
17+
rand:uniform(Max), rand:uniform(Max), rand:uniform(Max),
18+
rand:uniform(Max), rand:uniform(Max), rand:uniform(Max),
19+
rand:uniform(Max), rand:uniform(Max)},
2020
Mbb = [
2121
{erlang:min(A, B), erlang:max(A, B)},
2222
{erlang:min(C, D), erlang:max(C, D)},
@@ -47,9 +47,9 @@ generate_kpnodes(Num) ->
4747
random_kpnode(I) ->
4848
Max = 1000,
4949
{A, B, C, D, E, F, G, H} = {
50-
random:uniform(Max), random:uniform(Max), random:uniform(Max),
51-
random:uniform(Max), random:uniform(Max), random:uniform(Max),
52-
random:uniform(Max), random:uniform(Max)},
50+
rand:uniform(Max), rand:uniform(Max), rand:uniform(Max),
51+
rand:uniform(Max), rand:uniform(Max), rand:uniform(Max),
52+
rand:uniform(Max), rand:uniform(Max)},
5353
Mbb = [
5454
{erlang:min(A, B), erlang:max(A, B)},
5555
{erlang:min(C, D), erlang:max(C, D)},
@@ -58,7 +58,7 @@ random_kpnode(I) ->
5858
#kp_node {
5959
key = Mbb,
6060
childpointer = I,
61-
treesize = random:uniform(Max),
61+
treesize = rand:uniform(Max),
6262
mbb_orig = Mbb
6363
}.
6464

0 commit comments

Comments
 (0)