Skip to content

Commit 4d84f53

Browse files
committed
Let's see if AESNI makes a difference
Signed-off-by: Steffen Jaeckel <[email protected]>
1 parent 0aef68a commit 4d84f53

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

appveyor.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@ build_script:
3535
ninja
3636
cd..
3737
nmake -f makefile.msvc all
38+
cp test.exe test-stock.exe
39+
cp timing.exe timing-stock.exe
3840
nmake -f makefile.msvc clean
3941
nmake -f makefile.msvc all CFLAGS="/Ox /DUSE_LTM /DLTM_DESC /DLTC_AES_NI /I../libtommath"
4042
test_script:
41-
- cmd: test.exe
43+
- cmd: >-
44+
test-stock.exe
45+
test.exe
46+
timing-stock.exe cipher_ecb
47+
timing.exe cipher_ecb

makefile.msvc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,13 +294,15 @@ test.exe: $(LIBMAIN_S) $(TOBJECTS)
294294
cl $(LTC_CFLAGS) $(TOBJECTS) $(LIBMAIN_S) $(LTC_LDFLAGS) /Fe$@
295295
@echo NOTICE: start the tests by launching test.exe
296296

297-
all: $(LIBMAIN_S) hashsum.exe crypt.exe small.exe tv_gen.exe sizes.exe constants.exe timing.exe test.exe
297+
ALL_TEST=hashsum.exe crypt.exe small.exe tv_gen.exe sizes.exe constants.exe timing.exe test.exe
298+
299+
all: $(LIBMAIN_S) $(ALL_TEST)
298300

299301
test: test.exe
300302

301303
clean:
302304
@-cmd /c del /Q *_tv.txt 2>nul
303-
@-cmd /c del /Q /S *.OBJ *.LIB *.EXE *.DLL 2>nul
305+
@-cmd /c del /Q /S *.OBJ *.LIB $(ALL_TEST) *.DLL 2>nul
304306

305307
#Install the library + headers
306308
install: $(LIBMAIN_S)

0 commit comments

Comments
 (0)