From e579d4060b8760754c76cb31b7fa08a3d7fdb7c6 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 2 Nov 2012 14:17:17 -0500 Subject: [PATCH] unit: Move Poll Interval test data 1.1 --- unit/stk-test-data.h | 10 ++++++++++ unit/test-stkutil.c | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/unit/stk-test-data.h b/unit/stk-test-data.h index b168255b..2ad285e6 100644 --- a/unit/stk-test-data.h +++ b/unit/stk-test-data.h @@ -1574,3 +1574,13 @@ static const unsigned char play_tone_613[] = { }; #define play_tone_response_613 play_tone_response_111 + +static const unsigned char poll_interval_111[] = { + 0xD0, 0x0D, 0x81, 0x03, 0x01, 0x03, 0x00, 0x82, 0x02, 0x81, 0x82, 0x84, + 0x02, 0x01, 0x14 +}; + +static const unsigned char poll_interval_response_111[] = { + 0x81, 0x03, 0x01, 0x03, 0x00, 0x82, 0x02, 0x82, 0x81, 0x83, 0x01, 0x00, + 0x84, 0x02, 0x01, 0x14, +}; diff --git a/unit/test-stkutil.c b/unit/test-stkutil.c index 115dd2ed..77ec3530 100644 --- a/unit/test-stkutil.c +++ b/unit/test-stkutil.c @@ -3315,10 +3315,6 @@ struct poll_interval_test { struct stk_duration duration; }; -static unsigned char poll_interval_111[] = { 0xD0, 0x0D, 0x81, 0x03, 0x01, 0x03, - 0x00, 0x82, 0x02, 0x81, 0x82, - 0x84, 0x02, 0x01, 0x14 }; - static struct poll_interval_test poll_interval_data_111 = { .pdu = poll_interval_111, .pdu_len = sizeof(poll_interval_111), @@ -17326,12 +17322,6 @@ static const struct terminal_response_test play_tone_response_data_311b = { }, }; -/* TS 102 384 */ -static const unsigned char poll_interval_response_111[] = { - 0x81, 0x03, 0x01, 0x03, 0x00, 0x82, 0x02, 0x82, - 0x81, 0x83, 0x01, 0x00, 0x84, 0x02, 0x01, 0x14, -}; - static const struct terminal_response_test poll_interval_response_data_111 = { .pdu = poll_interval_response_111, .pdu_len = sizeof(poll_interval_response_111),