├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Rakefile ├── afl.gemspec ├── benchmarks └── minimal │ ├── harness.rb │ ├── input │ └── 1 │ ├── raw_harness.rb │ ├── raw_run │ └── run.rb ├── example ├── harness.rb └── work │ └── input │ └── 1 ├── ext └── afl_ext │ ├── afl_ext.c │ └── extconf.rb ├── lib ├── afl.rb └── afl │ ├── .gitkeep │ └── version.rb └── test ├── afl_test.rb └── lib └── crashing_test_harness.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /afl.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/afl.gemspec -------------------------------------------------------------------------------- /benchmarks/minimal/harness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/benchmarks/minimal/harness.rb -------------------------------------------------------------------------------- /benchmarks/minimal/input/1: -------------------------------------------------------------------------------- 1 | TEST 2 | -------------------------------------------------------------------------------- /benchmarks/minimal/raw_harness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/benchmarks/minimal/raw_harness.rb -------------------------------------------------------------------------------- /benchmarks/minimal/raw_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/benchmarks/minimal/raw_run -------------------------------------------------------------------------------- /benchmarks/minimal/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/benchmarks/minimal/run.rb -------------------------------------------------------------------------------- /example/harness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/example/harness.rb -------------------------------------------------------------------------------- /example/work/input/1: -------------------------------------------------------------------------------- 1 | BUTTS 2 | -------------------------------------------------------------------------------- /ext/afl_ext/afl_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/ext/afl_ext/afl_ext.c -------------------------------------------------------------------------------- /ext/afl_ext/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/ext/afl_ext/extconf.rb -------------------------------------------------------------------------------- /lib/afl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/lib/afl.rb -------------------------------------------------------------------------------- /lib/afl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/afl/version.rb: -------------------------------------------------------------------------------- 1 | module AFL 2 | VERSION = '0.0.3' 3 | end 4 | -------------------------------------------------------------------------------- /test/afl_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/test/afl_test.rb -------------------------------------------------------------------------------- /test/lib/crashing_test_harness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richo/afl-ruby/HEAD/test/lib/crashing_test_harness.rb --------------------------------------------------------------------------------