aboutsummaryrefslogtreecommitdiff
path: root/support/support_test_compare_blob.c
AgeCommit message (Collapse)Author
2019-05-16support: Report NULL blobs explicitly in TEST_COMPAREFlorian Weimer
Provide an explicit diagnostic if the length is positive, and do not just crash with a null pointer dereference. Null pointers are only valid if the length is zero, so this can only happen with a faulty test.
2019-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers
* All files with FSF copyright notices: Update copyright dates using scripts/update-copyrights. * locale/programs/charmap-kw.h: Regenerated. * locale/programs/locfile-kw.h: Likewise.
2018-05-16support: Add TEST_COMPARE_BLOB, support_quote_blobFlorian Weimer
The declaration of support_test_compare_blob uses unsigned long int, to avoid including <stddef.h>. Reviewed-by: Carlos O'Donell <carlos@redhat.com>