GOST unit tests added

pull/838/head
orignal 7 years ago
parent 2aa8cf7104
commit 44a3e08095

@ -1,6 +1,6 @@
CXXFLAGS += -Wall -Wextra -pedantic -O0 -g -std=c++11 -D_GLIBCXX_USE_NANOSLEEP=1
TESTS = test-http-url test-http-req test-http-res test-http-url_decode \
TESTS = test-gost test-http-url test-http-req test-http-res test-http-url_decode \
test-http-merge_chunked test-base-64
all: $(TESTS) run
@ -11,6 +11,9 @@ test-http-%: ../HTTP.cpp test-http-%.cpp
test-base-%: ../Base.cpp test-base-%.cpp
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) -o $@ $^
test-gost: ../Gost.cpp test-gost.cpp
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) -o $@ $^ -lcrypto
run: $(TESTS)
@for TEST in $(TESTS); do ./$$TEST ; done

Loading…
Cancel
Save