this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Run xks model fuzzer against actual disk

garrison cd2d08c8 ab2a48ea

+23
+23
test/xks_test.exs
··· 219 219 end) 220 220 end 221 221 end 222 + 223 + defmodule ModelDiskFuzzTest do 224 + use ExUnit.Case, async: true 225 + @moduletag :model_disk_fuzz 226 + @moduletag :disable 227 + @moduletag :tmp_dir 228 + 229 + test "fuzz", %{tmp_dir: tmp_dir} do 230 + path = Path.join(tmp_dir, "fuzz.xks") 231 + 232 + Hobbes.XKS.Fuzz.ModelFuzz.run(100, [ 233 + iterations: 2_000, 234 + key_bits: 64, 235 + xks_opts: [ 236 + path: path, 237 + block_size: 128 * 1024, 238 + extent_block_count: 10, 239 + lsm_subtable_size: 32 * 1024, 240 + lsm_memtable_size_limit: 64 * 1024, 241 + ], 242 + ]) 243 + end 244 + end 222 245 end