Update TESTING.md

This commit is contained in:
rsheeter 2019-05-09 20:06:29 -07:00 committed by GitHub
parent ed972d5d73
commit 1b58bf22ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -5,18 +5,18 @@ Values defined in `hb-debug.hh`.
```shell
# quick sanity check
time (make CPPFLAGS='-DHB_DEBUG_SUBSET=100' \
&& make -C test/api check || cat test/api/test-suite.log)
time (make -j4 CPPFLAGS='-DHB_DEBUG_SUBSET=100' \
&& {make -j4 -C test/api check || cat test/api/test-suite.log})
# slower santiy check
time (make CPPFLAGS='-DHB_DEBUG_SUBSET=100' \
&& make -C src check \
&& make -C test/api check \
&& make -C test/subset check)
# slower sanity check
time (make -j4 CPPFLAGS='-DHB_DEBUG_SUBSET=100' \
&& make -j4 -C src check \
&& make -j4 -C test/api check \
&& make -j4 -C test/subset check)
# confirm you didn't break anything else
time (make CPPFLAGS='-DHB_DEBUG_SUBSET=100' \
&& make check)
time (make -j4 CPPFLAGS='-DHB_DEBUG_SUBSET=100' \
&& make -j4 check)
# often catches files you didn't add, e.g. test fonts to EXTRA_DIST
make distcheck