- First tests for x509_write_cert_req() compat with OpenSSL output

This commit is contained in:
Paul Bakker 2012-02-16 14:09:13 +00:00
parent 3cac5e012b
commit 6d6205091b
12 changed files with 237 additions and 2 deletions

View file

@ -19,8 +19,8 @@ APPS = test_suite_aes test_suite_arc4 \
test_suite_md test_suite_mdx \
test_suite_mpi test_suite_pkcs1_v21 \
test_suite_rsa test_suite_shax \
test_suite_x509parse test_suite_xtea \
test_suite_version
test_suite_x509parse test_suite_x509write \
test_suite_xtea test_suite_version
.SILENT:
@ -126,6 +126,10 @@ test_suite_x509parse: test_suite_x509parse.c ../library/libpolarssl.a
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
test_suite_x509write: test_suite_x509write.c ../library/libpolarssl.a
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
test_suite_xtea: test_suite_xtea.c ../library/libpolarssl.a
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@