Skip to content

Commit d0ddc69

Browse files
committed
Update CC fuzzer
1 parent 8d8581e commit d0ddc69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fuzzer/cycles.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn test_cycles(r : rand::rng, k: uint, n: uint)
6868
if (likelihood(r, k, n)) { v[i].c = @p(choice(r, v)); }
6969

7070
if (likelihood(r, k, n)) { v[i].f = bind nopP(choice(r, v)); }
71-
if (false) { v[i].g = bind (fn~(_x: @pointy) { })(choice(r, v)); }
71+
//if (false) { v[i].g = bind (fn~(_x: @pointy) { })(choice(r, v)); }
7272
// https://github.com/mozilla/rust/issues/1899
7373

7474
if (likelihood(r, k, n)) { v[i].m = [p(choice(r, v))]; }
@@ -84,7 +84,7 @@ fn test_cycles(r : rand::rng, k: uint, n: uint)
8484

8585
fn main()
8686
{
87-
let r = rand::mk_rng();
87+
let r = rand::rng();
8888
range(0u, iters) {|i|
8989
test_cycles(r, i, iters);
9090
}

0 commit comments

Comments
 (0)