1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Fix a macro typo introduced by [5da112c02f9e8d0b] that prevented coverage

tests from working.

FossilOrigin-Name: 566e6974892ebd3d3de8d77b24655257a5efe14434c553e1a25fc680b201b336
This commit is contained in:
drh
2021-10-06 10:36:56 +00:00
parent 3768f175cc
commit 16a8f28e49
3 changed files with 8 additions and 8 deletions

View File

@@ -473,7 +473,7 @@
** Disable ALWAYS() and NEVER() (make them pass-throughs) for coverage
** and mutation testing
*/
#if defined(SQLITE_COVERATE_TEST) || defined(SQLITE_MUTATION_TEST)
#if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_MUTATION_TEST)
# define SQLITE_OMIT_AUXILIARY_SAFETY_CHECKS 1
#endif