CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2025/05/05 00:33:35
Modified files: regress/lib/libcrypto/x509: Makefile x509_name_test.c Removed files: regress/lib/libcrypto/x509: x509name.c x509name.expected Log message: merge the x509name test into x509_name_test.c Remove the old x509name test and its Makefile rule. Its logic has been fully integrated into x509_name_test.c using a new table-driven approach. Each x509 name entry is added and validated step by step, checking both the string representation produced by X509_NAME_print_ex() and the internal RDN set structure. This makes the test easier to extend and maintain, and eliminates the need for an external .expected file or output diff. >From Kenjiro Nakayama (with tiny tweaks)