From 8865dd5e849220d75965549a5f4adc086b725111 Mon Sep 17 00:00:00 2001
From: Sergey Lyubka <valenok@gmail.com>
Date: Thu, 20 Feb 2014 12:13:59 +0000
Subject: [PATCH] Moved unit_test.c to examples

---
 examples/Makefile                   | 4 ++++
 unit_test.c => examples/unit_test.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)
 rename unit_test.c => examples/unit_test.c (99%)

diff --git a/examples/Makefile b/examples/Makefile
index c42186ef3..d22d677db 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -49,5 +49,9 @@ windows: websocket_html.c
 	$(CL) auth.c ../mongoose.c $(CLFLAGS) $(LFLAGS)
 	$(CL) server.c ../mongoose.c $(CLFLAGS) $(LFLAGS)
 
+u:
+	g++ unit_test.c -Wall -W -pedantic -lssl -g -O0 && ./a.out
+
+
 clean:
 	-@$(RM) hello upload post websocket auth server *.exe *.dSYM *.obj .*o
diff --git a/unit_test.c b/examples/unit_test.c
similarity index 99%
rename from unit_test.c
rename to examples/unit_test.c
index eb1a8aab1..f5b57d926 100644
--- a/unit_test.c
+++ b/examples/unit_test.c
@@ -9,7 +9,7 @@
 #define MONGOOSE_POST_SIZE_LIMIT 999
 
 // USE_* definitions must be made before #include "mongoose.c" !
-#include "mongoose.c"
+#include "../mongoose.c"
 
 #define FAIL(str, line) do {                    \
   printf("Fail on line %d: [%s]\n", line, str); \
-- 
GitLab