Flatten structure of libcrypto/bn tests
authortb <tb@openbsd.org>
Thu, 1 Dec 2022 20:50:10 +0000 (20:50 +0000)
committertb <tb@openbsd.org>
Thu, 1 Dec 2022 20:50:10 +0000 (20:50 +0000)
commitb8d22d11993245495fb801aaa6ab058b8c2ad1cd
tree5300a5b9f7476f5dc9668e078acbf12bae4bcaf4
parent6669d576ee3822d163b17f4e6208325edfa2dde2
Flatten structure of libcrypto/bn tests

The bn tests were distributed into three subdirectories rather randomly.
It's cleaner and easier to maintain if all this is in a single directory.
Use consistent names for the .c files, unify handling of the tests with
the exception of bn_test, which is special.

Discussed with jsing
25 files changed:
regress/lib/libcrypto/bn/Makefile
regress/lib/libcrypto/bn/addsub/Makefile [deleted file]
regress/lib/libcrypto/bn/addsub/bnaddsub.c [deleted file]
regress/lib/libcrypto/bn/bn_add_sub.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_isqrt.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_mod_exp2_mont.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_mod_sqrt.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_mont.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_primes.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_rand_interval.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_test.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_to_string.c [new file with mode: 0644]
regress/lib/libcrypto/bn/bn_unit.c [new file with mode: 0644]
regress/lib/libcrypto/bn/general/Makefile [deleted file]
regress/lib/libcrypto/bn/general/bn_isqrt.c [deleted file]
regress/lib/libcrypto/bn/general/bn_mod_exp2_mont.c [deleted file]
regress/lib/libcrypto/bn/general/bn_mod_sqrt.c [deleted file]
regress/lib/libcrypto/bn/general/bn_primes.c [deleted file]
regress/lib/libcrypto/bn/general/bn_to_string.c [deleted file]
regress/lib/libcrypto/bn/general/bn_unit.c [deleted file]
regress/lib/libcrypto/bn/general/bntest.c [deleted file]
regress/lib/libcrypto/bn/mont/Makefile [deleted file]
regress/lib/libcrypto/bn/mont/mont.c [deleted file]
regress/lib/libcrypto/bn/rand/Makefile [deleted file]
regress/lib/libcrypto/bn/rand/bn_rand_interval.c [deleted file]