1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-03 12:00:59 +00:00

Travis CI: Run aestst

This commit is contained in:
Saleem Rashid 2017-08-14 13:25:35 +01:00 committed by Pavol Rusnak
parent 2b25724f13
commit 5f6c49aebc
2 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,7 @@ install:
script:
- make
- ./aes/aestst
- ./test_check
- CK_TIMEOUT_MULTIPLIER=20 valgrind -q --error-exitcode=1 ./test_check
- ./test_openssl 1000

View File

@ -60,6 +60,9 @@ all: test_check test_openssl test_speed tools libtrezor-crypto.so
%.o: %.c %.h options.h
$(CC) $(CFLAGS) -o $@ -c $<
aes/aestst: aes/aestst.o aes/aescrypt.o aes/aeskey.o aes/aestab.o
$(CC) $^ -o $@
test_check: test_check.o $(OBJS)
$(CC) test_check.o $(OBJS) $(TESTLIBS) -o test_check