diff options
author | Jouni Malinen <j@w1.fi> | 2009-12-05 22:11:50 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-12-05 22:11:50 +0200 |
commit | 668562d5fba3a0a1c5e05cbd360493abd4b7787d (patch) | |
tree | e6aada75caf2e0fe4a40719612ad4c26a7555acf /tests/Makefile | |
parent | 631afd993fa60f5d19a8c50360203d1a3dc8e9af (diff) | |
download | external_wpa_supplicant_8_ti-668562d5fba3a0a1c5e05cbd360493abd4b7787d.zip external_wpa_supplicant_8_ti-668562d5fba3a0a1c5e05cbd360493abd4b7787d.tar.gz external_wpa_supplicant_8_ti-668562d5fba3a0a1c5e05cbd360493abd4b7787d.tar.bz2 |
Move MD4 test from wpa_supplicant/tests into tests
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index eb5b0ee..381998e 100644 --- a/tests/Makefile +++ b/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: |