Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Setup travis (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrozner authored Oct 10, 2018
1 parent 12cb645 commit a61abb2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
language: rust
rust:
- stable
- beta
- nightly
script:
- |
cargo test
2 changes: 2 additions & 0 deletions README.md
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.
1 change: 1 addition & 0 deletions synfuzz/examples/expression.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#[macro_use]
extern crate synfuzz;

use std::collections::HashMap;
Expand Down

0 comments on commit a61abb2

Please sign in to comment.