diff options
author | Erlang/OTP <[email protected]> | 2009-12-11 10:36:16 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-12-11 10:36:16 +0000 |
commit | 9c35f074a9a8c2b713b53fb13cedc0746b1da150 (patch) | |
tree | 15217a5fa91e9bd03bfb64f651ddfd9bc8689b8e /lib/crypto/test/Makefile | |
parent | c4bc6f73b2725c124ae4f15050027b1834953ab9 (diff) | |
parent | b113de760b4e4c04ba573ed54c7298a86e6bfe8a (diff) | |
download | otp-9c35f074a9a8c2b713b53fb13cedc0746b1da150.tar.gz otp-9c35f074a9a8c2b713b53fb13cedc0746b1da150.tar.bz2 otp-9c35f074a9a8c2b713b53fb13cedc0746b1da150.zip |
Merge branch 'po/blowfish_ecb_cbc_ofb-rebased' into ccase/r13b04_dev
* po/blowfish_ecb_cbc_ofb-rebased:
Add Blowfish tests
Add Blowfish ECB, CBC and OFB modes
OTP-8331 The crypto module now supports Blowfish in ECB, CBC and OFB
modes. (Thanks to Paul Oliver.)
Diffstat (limited to 'lib/crypto/test/Makefile')
-rw-r--r-- | lib/crypto/test/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/crypto/test/Makefile b/lib/crypto/test/Makefile index bf5c42877e..e728875027 100644 --- a/lib/crypto/test/Makefile +++ b/lib/crypto/test/Makefile @@ -5,7 +5,9 @@ include $(ERL_TOP)/make/$(TARGET)/otp.mk # Target Specs # ---------------------------------------------------- -MODULES= crypto_SUITE +MODULES = \ + blowfish_SUITE \ + crypto_SUITE ERL_FILES= $(MODULES:%=%.erl) |