From 17ded1a9ac576e36635f71d1a42f86462a5ced69 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 29 Sep 2016 21:27:26 +0200 Subject: [PATCH] Move net/test to samples/net/test --- libretro-common/{net/test => samples/net}/Makefile | 1 + libretro-common/{net/test => samples/net}/net_http_test.c | 0 libretro-common/{net/test => samples/net}/net_ifinfo_test.c | 0 3 files changed, 1 insertion(+) rename libretro-common/{net/test => samples/net}/Makefile (95%) rename libretro-common/{net/test => samples/net}/net_http_test.c (100%) rename libretro-common/{net/test => samples/net}/net_ifinfo_test.c (100%) diff --git a/libretro-common/net/test/Makefile b/libretro-common/samples/net/Makefile similarity index 95% rename from libretro-common/net/test/Makefile rename to libretro-common/samples/net/Makefile index f4ae977a6b..9ef1c569ed 100644 --- a/libretro-common/net/test/Makefile +++ b/libretro-common/samples/net/Makefile @@ -14,6 +14,7 @@ CFLAGS += -Wall -pedantic -std=gnu99 HTTP_TEST_C = \ $(LIBRETRO_COMM_DIR)/net/net_http.c \ $(LIBRETRO_COMM_DIR)/net/net_compat.c \ + $(LIBRETRO_COMM_DIR)/net/net_socket.c \ $(LIBRETRO_COMM_DIR)/compat/compat_strl.c \ $(LIBRETRO_COMM_DIR)/string/stdstring.c \ net_http_test.c diff --git a/libretro-common/net/test/net_http_test.c b/libretro-common/samples/net/net_http_test.c similarity index 100% rename from libretro-common/net/test/net_http_test.c rename to libretro-common/samples/net/net_http_test.c diff --git a/libretro-common/net/test/net_ifinfo_test.c b/libretro-common/samples/net/net_ifinfo_test.c similarity index 100% rename from libretro-common/net/test/net_ifinfo_test.c rename to libretro-common/samples/net/net_ifinfo_test.c