Skip to content

Commit

Permalink
Merge pull request #66 from csmith-project/travis-ci
Browse files Browse the repository at this point in the history
Fixes #65: also add test scripts to CI
  • Loading branch information
jxyang committed Apr 7, 2019
2 parents 983e793 + ba878ca commit 4f540a9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -38,9 +38,9 @@ language: cpp
script: >
CXX=clang++
CC=clang
./configure &&
cmake . &&
make -j2 &&
make check
python gen100.py
###############################################################################

Expand Down
6 changes: 6 additions & 0 deletions gen100.py
@@ -0,0 +1,6 @@
import os

for seed in range(100):
print("Generating with seed", seed)
os.system("src/csmith -s seed > " + str(seed)+ ".c")

0 comments on commit 4f540a9

Please sign in to comment.