Add basic change for v1453
Change-Id: I9497a61bbc3717f66413794a4e7dee0347c0bc33
diff --git a/mbtk/test/libql_lib_v2/ql_atc_test.c b/mbtk/test/libql_lib_v2/ql_atc_test.c
new file mode 100755
index 0000000..47c00ac
--- /dev/null
+++ b/mbtk/test/libql_lib_v2/ql_atc_test.c
@@ -0,0 +1,31 @@
+#include <stdio.h>
+#include "ql_atc.h"
+
+
+int main(int argc, char *argv[])
+{
+ if(argc != 2) {
+ printf("ql_atc_test <at>\n");
+ return -1;
+ }
+
+ if(ql_atc_init()) {
+ printf("ql_atc_init() fail.\n");
+ return -1;
+ }
+
+ char resp[1024];
+ if(ql_atc_send(argv[1], resp, sizeof(resp))) {
+ printf("ql_atc_send() fail.\n");
+ return -1;
+ }
+
+ if(ql_atc_deinit()) {
+ printf("ql_atc_deinit() fail.\n");
+ return -1;
+ }
+
+ printf("RSP : %s\n", resp);
+
+ return 0;
+}