mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-15 02:05:40 +00:00
f1907404b1
enabled.
10 lines
188 B
Bash
Executable file
10 lines
188 B
Bash
Executable file
#!/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
|