aboutsummaryrefslogtreecommitdiffstats
path: root/test/crypto/crypto_test.mk
diff options
context:
space:
mode:
authorareviu <areviu.info@gmail.com>2017-11-13 20:31:01 +0000
committerareviu <areviu.info@gmail.com>2017-11-13 20:31:01 +0000
commitabc49200f7cdd8b9698e767cec7df95a4ec039e2 (patch)
tree9e412a5a8bb4362bf237c935c142806dd662ed22 /test/crypto/crypto_test.mk
parent6345e21b5deb23408ef15574904b12df329fa9fe (diff)
downloadChibiOS-abc49200f7cdd8b9698e767cec7df95a4ec039e2.tar.gz
ChibiOS-abc49200f7cdd8b9698e767cec7df95a4ec039e2.tar.bz2
ChibiOS-abc49200f7cdd8b9698e767cec7df95a4ec039e2.zip
added aes and (t)des in dma mode + test suite crypto
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10993 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/crypto/crypto_test.mk')
-rw-r--r--test/crypto/crypto_test.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/crypto/crypto_test.mk b/test/crypto/crypto_test.mk
new file mode 100644
index 000000000..039cff349
--- /dev/null
+++ b/test/crypto/crypto_test.mk
@@ -0,0 +1,15 @@
+# List of all the ChibiOS OS Library test files.
+TESTSRC += ${CHIBIOS}/test/crypto/source/test/cry_test_root.c \
+ ${CHIBIOS}/test/crypto/source/testref/ref_aes.c \
+ ${CHIBIOS}/test/crypto/source/testref/ref_des.c \
+ ${CHIBIOS}/test/crypto/source/test/cry_test_sequence_001.c \
+ ${CHIBIOS}/test/crypto/source/test/cry_test_sequence_002.c \
+ ${CHIBIOS}/test/crypto/source/test/cry_test_sequence_003.c \
+ ${CHIBIOS}/test/crypto/source/test/cry_test_sequence_004.c
+# Required include directories
+TESTINC += ${CHIBIOS}/test/crypto/source/testref \
+ ${CHIBIOS}/test/crypto/source/test
+
+include $(CHIBIOS)/os/hal/lib/streams/streams.mk
+
+