This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
language: rust | ||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
script: | ||
- | | ||
cargo test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# synfuzz | ||
|
||
[![Build Status](https://travis-ci.org/jrozner/synfuzz.svg?branch=master)](https://travis-ci.org/jrozner/synfuzz) | ||
|
||
A library for building fuzzers/test case generators based on a formal grammar. This is intended to provide primitives that can be used for targeting specific grammar definition languages (eg. ANTLR) so that test case generation can happen directly from the grammar definition file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#[macro_use] | ||
extern crate synfuzz; | ||
|
||
use std::collections::HashMap; | ||
|