diff --git a/tests/nhdp/Makefile b/tests/nhdp/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..d73b092d530a221cf3ddc28f75d035e2905210fd
--- /dev/null
+++ b/tests/nhdp/Makefile
@@ -0,0 +1,11 @@
+APPLICATION = nhdp
+include ../Makefile.tests_common
+
+BOARD_BLACKLIST := arduino-mega2560 msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
+BOARD_INSUFFICIENT_MEMORY := nucleo-f334 stm32f0discovery weio
+
+USEMODULE += gnrc_ipv6
+USEMODULE += gnrc_conn_udp
+USEMODULE += nhdp
+
+include $(RIOTBASE)/Makefile.include
diff --git a/tests/nhdp/main.c b/tests/nhdp/main.c
new file mode 100644
index 0000000000000000000000000000000000000000..0ad1fcab3b2975cfe75dad8129c3d45a46b50d5e
--- /dev/null
+++ b/tests/nhdp/main.c
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2015 Cenk Gündoğan <cnkgndgn@gmail.com>
+ *
+ * This file is subject to the terms and conditions of the GNU Lesser
+ * General Public License v2.1. See the file LICENSE in the top level
+ * directory for more details.
+ */
+
+/**
+ * @file
+ * @brief       Check if the nhdp module builds.
+ *
+ * @author      Cenk Gündoğan <cnkgndgn@gmail.com>
+ *
+ */
+
+#include <stdio.h>
+
+int main(void)
+{
+    printf("NHDP compiled!");
+    return 0;
+}