Merge branch 'moonshot' of ssh://moonshot.suchdamage.org:822/srv/git/libeap into...
[libeap.git] / tests / Makefile
index 381998e..210a1b4 100644 (file)
@@ -1,4 +1,5 @@
-TESTS=test-base64 test-md4 test-milenage
+TESTS=test-base64 test-md4 test-md5 test-milenage test-ms_funcs test-sha1 \
+       test-sha256 test-aes test-asn1 test-x509 test-x509v3 test-list
 
 all: $(TESTS)
 
@@ -17,8 +18,13 @@ endif
 CFLAGS += -I../src
 CFLAGS += -I../src/utils
 
-LIBS = ../src/utils/libutils.a \
-       ../src/crypto/libcrypto.a
+SLIBS = ../src/utils/libutils.a
+
+DLIBS = ../src/crypto/libcrypto.a \
+       ../src/tls/libtls.a
+
+LIBS = $(SLIBS) $(DLIBS)
+LLIBS = -Wl,--start-group $(DLIBS) -Wl,--end-group $(SLIBS)
 
 ../src/utils/libutils.a:
        $(MAKE) -C ../src/utils
@@ -26,28 +32,62 @@ LIBS = ../src/utils/libutils.a \
 ../src/crypto/libcrypto.a:
        $(MAKE) -C ../src/crypto
 
-BASE64_OBJS=test-base64.o \
-       $(LIBS)
+../src/tls/libtls.a:
+       $(MAKE) -C ../src/tls
+
+
+test-aes: test-aes.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
+
+test-asn1: test-asn1.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
 
-test-base64: $(BASE64_OBJS)
-       $(LDO) $(LDFLAGS) -o $@ $(BASE64_OBJS)
+test-base64: test-base64.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
+
+test-list: test-list.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
 
 test-md4: test-md4.o $(LIBS)
        $(LDO) $(LDFLAGS) -o $@ $^
 
-MILENAGE_OBJS=test-milenage.o \
-       $(LIBS)
+test-md5: test-md5.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
+
+test-milenage: test-milenage.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
+
+test-ms_funcs: test-ms_funcs.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
+
+test-sha1: test-sha1.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
+
+test-sha256: test-sha256.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^
+
+test-x509: test-x509.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $< $(LLIBS)
 
-test-milenage: $(MILENAGE_OBJS)
-       $(LDO) $(LDFLAGS) -o $@ $(MILENAGE_OBJS)
+test-x509v3: test-x509v3.o $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $< $(LLIBS)
 
 
 run-tests: $(TESTS)
+       ./test-aes
+       ./test-list
        ./test-md4
+       ./test-md5
        ./test-milenage
+       ./test-sha1
+       ./test-sha256
+       @echo
+       @echo All tests completed successfully.
 
 clean:
        $(MAKE) -C ../src clean
        rm -f $(TESTS) *~ *.o *.d
+       rm -f test_x509v3_nist.out.*
+       rm -f test_x509v3_nist2.out.*
 
 -include $(OBJS:%.o=%.d)