Lines Matching refs:to
11 JFuzz can be combined with DexFuzz to get multi-layered fuzz testing.
13 How to run JFuzz
36 The current version of JFuzz sends all output to stdout, and uses
45 How to start JFuzz testing
60 --num_tests : number of tests to run (10000 by default)
61 --device : target device serial number (passed to adb -s)
69 --report_script : path to script called for each divergence
72 --dexer=DEXER : use either dx or d8 to obtain dex files
75 How to start JFuzz nightly testing
83 --num_proc : number of run_jfuzz_test.py instances to run (8 by default)
85 Remaining arguments are passed to run\_jfuzz_test.py.
87 How to start J/DexFuzz testing (multi-layered)
99 --num_tests : number of tests to run (10000 by default)
100 --num_inputs : number of JFuzz programs to generate
101 --device : target device serial number (passed to adb -s)
102 --dexer=DEXER : use either dx or d8 to obtain dex files
108 Although test suites are extremely useful to validate the correctness of a
109 system and to ensure that no regressions occur, any test suite is necessarily
119 in an unexpected way. Fuzzing refers to feeding a large amount of random data
120 as input to a system in an attempt to find bugs or make it crash. Generation-
122 Mutation-based fuzz testing applies small random changes to existing inputs
123 in order to detect shortcomings in a system. Profile-guided or coverage-guided
124 fuzzing adds a direction to the way these random changes are applied. Multi-