gsm0808: make gsm0808_create_reset_ack() accessible

The create function to generate the RESET ACKNOWLEDGE
message is not accessible from outside, as it does not
appear in limosmogsm.map. It also has not testcase.

This commit adds gsm0808_create_reset_ack() to the
map file and also adds a testcase.

Change-Id: I82d3411484f82b4a9205d407fa0442244678f183
diff --git a/tests/gsm0808/gsm0808_test.c b/tests/gsm0808/gsm0808_test.c
index a0ff6d5..8304052 100644
--- a/tests/gsm0808/gsm0808_test.c
+++ b/tests/gsm0808/gsm0808_test.c
@@ -123,6 +123,18 @@
 	msgb_free(msg);
 }
 
+static void test_create_reset_ack()
+{
+	static const uint8_t res[] = { 0x00, 0x01, 0x31 };
+	struct msgb *msg;
+
+	printf("Testing creating Reset Ack\n");
+	msg = gsm0808_create_reset_ack();
+	VERIFY(msg, res, ARRAY_SIZE(res));
+	msgb_free(msg);
+}
+
+
 static void test_create_clear_command()
 {
 	static const uint8_t res[] = { 0x20, 0x04, 0x01, 0x23 };
@@ -828,6 +840,7 @@
 	test_create_layer3();
 	test_create_layer3_aoip();
 	test_create_reset();
+	test_create_reset_ack();
 	test_create_clear_command();
 	test_create_clear_complete();
 	test_create_cipher();