mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-15 02:05:40 +00:00
11 lines
188 B
Bash
11 lines
188 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
srcdir="@abs_top_srcdir@"
|
||
|
export COVFILE="${srcdir}/test.cov"
|
||
|
gmake -C "${srcdir}" clean
|
||
|
rm "${COVFILE}"
|
||
|
cov01 -1
|
||
|
gmake -C "${srcdir}" check
|
||
|
cov01 -0
|
||
|
gmake -C "${srcdir}" clean
|