Skip to content

Commit

Permalink
Fixes #65: also add test scripts to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jxyang committed Apr 7, 2019
1 parent 983e793 commit ba878ca
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 ba878ca

Please sign in to comment.