picrin-scheme / picrin

lightweight scheme interpreter
MIT License
414 stars 35 forks source link

run `make` before run `make test` to test the binary built for usual use #336

Closed KeenS closed 8 years ago

KeenS commented 8 years ago

@wasabiz

current make test only depends on bin/picrin and it by-passes all's CFLAGS += -O2 -DNDEBUG=1. It is OK, because you need to test against both make all and make test. Then, let's modify CI code.

nyuichi commented 8 years ago

@KeenS thanks!