spellcheck.c: add another selftest for PR c/82967
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 4 Dec 2018 21:33:08 +0000 (21:33 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Tue, 4 Dec 2018 21:33:08 +0000 (21:33 +0000)
This adds another testcase for overzealous spellchecker suggestions,
reported on IRC.

gcc/ChangeLog:
PR c/82967
* spellcheck.c (selftest::test_suggestions): Add another
assertion.

From-SVN: r266798

gcc/ChangeLog
gcc/spellcheck.c

index a77ccdb23135ad335628b29626cb32feed5eaf8a..795dbb11f8d7cfd27b60649f960ec269d6aa92a3 100644 (file)
@@ -1,3 +1,9 @@
+2018-12-04  David Malcolm  <dmalcolm@redhat.com>
+
+       PR c/82967
+       * spellcheck.c (selftest::test_suggestions): Add another
+       assertion.
+
 2018-12-04  Martin Sebor  <msebor@redhat.com>
 
        * doc/extend.texi (__builtin_has_attribute): Fix typo.
index 690e6fa674fc900558f890d6c53a4f0fd908e350..391a2424ba63ca03b437463d0433962388bdb0da 100644 (file)
@@ -378,6 +378,9 @@ test_suggestions ()
 
   ASSERT_NOT_SUGGESTED_FOR ("__DATE__", "__i386__");
   // dist == 4, max_length == min_length == 8
+
+  ASSERT_NOT_SUGGESTED_FOR ("start_input_device", "InputDevice");
+  // dist == 9, max_length == 18, min_length == 11
 }
 
 /* Verify that find_closest_string is sane.  */