aboutsummaryrefslogtreecommitdiffhomepage
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test.c b/test.c
index 8a4797b..4634dab 100644
--- a/test.c
+++ b/test.c
@@ -33,6 +33,9 @@
#include "stdafx.h"
#endif
+/* forward declaration / not part of official API */
+unsigned int _selftest_errors();
+
const char *UsrDict[] =
{
"Onename.Twoname@example.com", "Onename", "Twoname", "example.com", "example",
@@ -207,9 +210,16 @@ int DoChecks(char *file)
int main(int argc, char **argv)
{
int i, Quiet, Checks, White;
+ unsigned int SelftestErrors;
Quiet = 0;
Checks = 0;
White = 0;
+
+ SelftestErrors = _selftest_errors();
+ printf("Selftest returned %d error(s).\n", SelftestErrors );
+ if (SelftestErrors)
+ return 1;
+
if (!ZxcvbnInit("zxcvbn.dict"))
{
printf("Failed to open dictionary file\n");