Browse Source

Move MD4 test from wpa_supplicant/tests into tests

Jouni Malinen 15 years ago
parent
commit
668562d5fb
4 changed files with 6 additions and 8 deletions
  1. 1 0
      tests/.gitignore
  2. 4 1
      tests/Makefile
  3. 0 0
      tests/test-md4.c
  4. 1 7
      wpa_supplicant/Makefile

+ 1 - 0
tests/.gitignore

@@ -1,2 +1,3 @@
 test-base64
+test-md4
 test-milenage

+ 4 - 1
tests/Makefile

@@ -1,4 +1,4 @@
-TESTS=test-base64 test-milenage
+TESTS=test-base64 test-md4 test-milenage
 
 all: $(TESTS)
 
@@ -32,6 +32,8 @@ BASE64_OBJS=test-base64.o \
 test-base64: $(BASE64_OBJS)
 	$(LDO) $(LDFLAGS) -o $@ $(BASE64_OBJS)
 
+test-md4: test-md4.o $(LIBS)
+	$(LDO) $(LDFLAGS) -o $@ $^
 
 MILENAGE_OBJS=test-milenage.o \
 	$(LIBS)
@@ -41,6 +43,7 @@ test-milenage: $(MILENAGE_OBJS)
 
 
 run-tests: $(TESTS)
+	./test-md4
 	./test-milenage
 
 clean:

+ 0 - 0
wpa_supplicant/tests/test_md4.c → tests/test-md4.c


+ 1 - 7
wpa_supplicant/Makefile

@@ -1363,19 +1363,13 @@ test-eap_sim_common: $(TEST_EAP_SIM_COMMON_OBJS)
 	./test-eap_sim_common
 	rm test-eap_sim_common
 
-TEST_MD4_OBJS = ../src/crypto/md4-internal.o tests/test_md4.o #../src/crypto/crypto_openssl.o
-test-md4: $(TEST_MD4_OBJS)
-	$(LDO) $(LDFLAGS) -o $@ $(TEST_MD4_OBJS) $(LIBS)
-	./test-md4
-	rm test-md4
-
 TEST_MD5_OBJS = $(MD5OBJS) tests/test_md5.o #../src/crypto/crypto_openssl.o
 test-md5: $(TEST_MD5_OBJS)
 	$(LDO) $(LDFLAGS) -o $@ $(TEST_MD5_OBJS) $(LIBS)
 	./test-md5
 	rm test-md5
 
-tests: test-ms_funcs test-sha1 test-aes test-eap_sim_common test-md4 test-md5
+tests: test-ms_funcs test-sha1 test-aes test-eap_sim_common test-md5
 
 clean:
 	$(MAKE) -C ../src clean