diff options
author | Lars Thorsen <[email protected]> | 2017-06-22 13:13:09 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2017-11-10 10:24:31 +0100 |
commit | b950289736287275307f1b5579d82c3bd2271db9 (patch) | |
tree | c28cee2d5f9c9f19fa82941ce4bebae6d1c780b4 /lib/crypto/test/Makefile | |
parent | 4ab56cf93ca4824d087b10085dec5edf64c8be69 (diff) | |
download | otp-b950289736287275307f1b5579d82c3bd2271db9.tar.gz otp-b950289736287275307f1b5579d82c3bd2271db9.tar.bz2 otp-b950289736287275307f1b5579d82c3bd2271db9.zip |
[crypto] Add support for loading an alternative Engine
Add support to plug in alternative implementations for
some or all of the cryptographic operations supported by
the OpenSSL Engine API.
When configured appropriately, OpenSSL calls the engine's
implementation of these operations instead of its own.
Diffstat (limited to 'lib/crypto/test/Makefile')
-rw-r--r-- | lib/crypto/test/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/crypto/test/Makefile b/lib/crypto/test/Makefile index 138081d386..e046a25338 100644 --- a/lib/crypto/test/Makefile +++ b/lib/crypto/test/Makefile @@ -7,7 +7,8 @@ include $(ERL_TOP)/make/$(TARGET)/otp.mk MODULES = \ blowfish_SUITE \ - crypto_SUITE + crypto_SUITE \ + engine_SUITE ERL_FILES= $(MODULES:%=%.erl) @@ -27,7 +28,7 @@ RELSYSDIR = $(RELEASE_PATH)/crypto_test # FLAGS # ---------------------------------------------------- ERL_MAKE_FLAGS += -ERL_COMPILE_FLAGS += +ERL_COMPILE_FLAGS += +nowarn_export_all EBIN = . MAKE_EMAKE = $(wildcard $(ERL_TOP)/make/make_emakefile) @@ -77,7 +78,7 @@ release_spec: release_tests_spec: $(TEST_TARGET) $(INSTALL_DIR) "$(RELSYSDIR)" $(INSTALL_DATA) crypto.spec crypto.cover $(RELTEST_FILES) "$(RELSYSDIR)" - @tar cfh - crypto_SUITE_data | (cd "$(RELSYSDIR)"; tar xf -) + @tar cfh - *_SUITE_data | (cd "$(RELSYSDIR)"; tar xf -) chmod -R u+w "$(RELSYSDIR)" release_docs_spec: |