<p>pespin has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.osmocom.org/c/libosmocore/+/17763">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">tests/coding_test: Fix test_pdtch() results<br><br>When switching the l2 structures passes to test_pdtch() to be constant,<br>it was noted that output of the test changes. This happens because same<br>array is tested several times with different length, incrementing each<br>time. Since the test was modifying the input array directly, it means<br>each new run of test_pdtch() the array was further modified.<br>Upon constifying the structures, we copy the array and hence only modify<br>the required bits each time.<br><br>Change-Id: Iffd0ca3669eb8d0d2e80d754fc8acbf72f1bebe8<br>---<br>M tests/coding/coding_test.c<br>M tests/coding/coding_test.ok<br>2 files changed, 30 insertions(+), 29 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/63/17763/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/tests/coding/coding_test.c b/tests/coding/coding_test.c</span><br><span>index 417c594..bdfe300 100644</span><br><span>--- a/tests/coding/coding_test.c</span><br><span>+++ b/tests/coding/coding_test.c</span><br><span>@@ -323,7 +323,7 @@</span><br><span>        uint8_t l2[54];</span><br><span> };</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-static struct test_macblock test_macblock[] = {</span><br><span style="color: hsl(120, 100%, 40%);">+static const struct test_macblock test_macblock[] = {</span><br><span>      /* Random frame */</span><br><span>   {       false,</span><br><span>               GSM0503_GPRS_BURSTS_NBITS,</span><br><span>@@ -385,33 +385,34 @@</span><br><span>   },</span><br><span> };</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-static void test_pdtch(struct test_macblock *tmb, int len)</span><br><span style="color: hsl(120, 100%, 40%);">+static void test_pdtch(const struct test_macblock *tmb, int len)</span><br><span> {</span><br><span style="color: hsl(0, 100%, 40%);">-   uint8_t result[len];</span><br><span style="color: hsl(120, 100%, 40%);">+  uint8_t l2[len], result[len];</span><br><span>        ubit_t bursts_u[116 * 4];</span><br><span>    sbit_t bursts_s[116 * 4];</span><br><span>    int n_errors, n_bits_total;</span><br><span>  int rc;</span><br><span> </span><br><span>  /* Zero the not coded tail bits */</span><br><span style="color: hsl(120, 100%, 40%);">+    memcpy(l2, tmb->l2, len);</span><br><span>         switch (len) {</span><br><span>       case 34:</span><br><span>     case 54:</span><br><span style="color: hsl(0, 100%, 40%);">-                tmb->l2[len - 1] &= 0x7f;</span><br><span style="color: hsl(120, 100%, 40%);">+              l2[len - 1] &= 0x7f;</span><br><span>             result[len - 1] &= 0x7f;</span><br><span>                 break;</span><br><span>       case 40:</span><br><span style="color: hsl(0, 100%, 40%);">-                tmb->l2[len - 1] &= 0x07;</span><br><span style="color: hsl(120, 100%, 40%);">+              l2[len - 1] &= 0x07;</span><br><span>             result[len - 1] &= 0x07;</span><br><span>                 break;</span><br><span>       }</span><br><span> </span><br><span>        /* Encode L2 message */</span><br><span style="color: hsl(0, 100%, 40%);">- printf("Encoding: %s\n", osmo_hexdump(tmb->l2, len));</span><br><span style="color: hsl(120, 100%, 40%);">+    printf("Encoding: %s\n", osmo_hexdump(l2, len));</span><br><span>   if (tmb->is_egprs)</span><br><span style="color: hsl(0, 100%, 40%);">-           rc = gsm0503_pdtch_egprs_encode(bursts_u, tmb->l2, len);</span><br><span style="color: hsl(120, 100%, 40%);">+           rc = gsm0503_pdtch_egprs_encode(bursts_u, l2, len);</span><br><span>  else</span><br><span style="color: hsl(0, 100%, 40%);">-            rc = gsm0503_pdtch_encode(bursts_u, tmb->l2, len);</span><br><span style="color: hsl(120, 100%, 40%);">+         rc = gsm0503_pdtch_encode(bursts_u, l2, len);</span><br><span>        CHECK_RC_OR_RET(rc == (int)tmb->exp_burst_bits, "encoding");</span><br><span> </span><br><span>        /* Prepare soft-bits */</span><br><span>@@ -435,7 +436,7 @@</span><br><span>        printf("pdtch_decode: n_errors=%d n_bits_total=%d ber=%.2f\n",</span><br><span>             n_errors, n_bits_total, (float)n_errors/n_bits_total);</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-      OSMO_ASSERT(!memcmp(tmb->l2, result, len));</span><br><span style="color: hsl(120, 100%, 40%);">+        OSMO_ASSERT(!memcmp(l2, result, len));</span><br><span> </span><br><span>   printf("\n");</span><br><span> }</span><br><span>diff --git a/tests/coding/coding_test.ok b/tests/coding/coding_test.ok</span><br><span>index 91083e4..cb562e9 100644</span><br><span>--- a/tests/coding/coding_test.ok</span><br><span>+++ b/tests/coding/coding_test.ok</span><br><span>@@ -272,32 +272,32 @@</span><br><span> Decoded: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 2f </span><br><span> pdtch_decode: n_errors=132 n_bits_total=588 ber=0.22</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-Encoding: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 2f 5f c6 36 43 44 03 </span><br><span style="color: hsl(120, 100%, 40%);">+Encoding: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 af 5f c6 36 43 44 03 </span><br><span> U-Bits:</span><br><span style="color: hsl(0, 100%, 40%);">-100010111000001100000000001101001000000000101100111011001 00  00  101110010011001000110010000011100101000011110001101100001</span><br><span style="color: hsl(0, 100%, 40%);">-001011110100100101010101111111110011111011111110001101001 01  00  011010010110101000111110001100110011101101111000100101110</span><br><span style="color: hsl(0, 100%, 40%);">-110001101010001000010101011111101011000111010110110011110 00  00  101001101100011001101100110110000101000001000001011000110</span><br><span style="color: hsl(0, 100%, 40%);">-011100001010000100100101001000110110100111000000101110000 00  01  111100110000011001001100110100111101011010011110100010011</span><br><span style="color: hsl(120, 100%, 40%);">+100010111000001100000000001101001000000000101100111011001 00  00  101110011011001000110000000011100101000011110001101100001</span><br><span style="color: hsl(120, 100%, 40%);">+001011110100100101010101111111110011111011111110011101001 01  00  011010110110101000110110001100110011101101111000100101100</span><br><span style="color: hsl(120, 100%, 40%);">+110001100000001000010101011111101011000111010111110011110 00  00  100001101100011001101100110110000101000001000001011001110</span><br><span style="color: hsl(120, 100%, 40%);">+011100001010000100100101001000100110100111010000101110000 00  01  111100110000011001001101110100111101001010011110100110011</span><br><span> S-Bits:</span><br><span style="color: hsl(0, 100%, 40%);">-81 7f 7f 7f 81 7f 81 81 81 7f 7f 7f 7f 7f 81 81 7f 7f 7f 7f 7f 7f 7f 7f 7f 7f 81 81 7f 81 7f 7f 81 7f 7f 7f 7f 7f 7f 7f 7f 7f 81 7f 81 81 7f 7f 81 81 81 7f 81 81 7f 7f 81  7f  7f  81 7f 81 81 81 7f 7f 81 7f 7f 81 81 7f 7f 81 7f 7f 7f 81 81 7f 7f 81 7f 7f 7f 7f 7f 81 81 81 7f 7f 81 7f 81 7f 7f 7f 7f 81 81 81 81 7f 7f 7f 81 81 7f 81 81 7f 7f 7f 7f 81 </span><br><span style="color: hsl(0, 100%, 40%);">-7f 7f 81 7f 81 81 81 81 7f 81 7f 7f 81 7f 7f 81 7f 81 7f 81 7f 81 7f 81 81 81 81 81 81 81 81 81 7f 7f 81 81 81 81 81 7f 81 81 81 81 81 81 81 7f 7f 7f 81 81 7f 81 7f 7f 81  81  7f  7f 81 81 7f 81 7f 7f 81 7f 81 81 7f 81 7f 81 7f 7f 7f 81 81 81 81 81 7f 7f 7f 81 81 7f 7f 81 81 7f 7f 81 81 81 7f 81 81 7f 81 81 81 81 7f 7f 7f 81 7f 7f 81 7f 81 81 81 7f </span><br><span style="color: hsl(0, 100%, 40%);">-81 81 7f 7f 7f 81 81 7f 81 7f 81 7f 7f 7f 81 7f 7f 7f 7f 81 7f 81 7f 81 7f 81 81 81 81 81 81 7f 81 7f 81 81 7f 7f 7f 81 81 81 7f 81 7f 81 81 7f 81 81 7f 7f 81 81 81 81 7f  7f  7f  81 7f 81 7f 7f 81 81 7f 81 81 7f 7f 7f 81 81 7f 7f 81 81 7f 81 81 7f 7f 81 81 7f 81 81 7f 7f 7f 7f 81 7f 81 7f 7f 7f 7f 7f 81 7f 7f 7f 7f 7f 81 7f 81 81 7f 7f 7f 81 81 7f </span><br><span style="color: hsl(0, 100%, 40%);">-7f 81 81 81 7f 7f 7f 7f 81 7f 81 7f 7f 7f 7f 81 7f 7f 81 7f 7f 81 7f 81 7f 7f 81 7f 7f 7f 81 81 7f 81 81 7f 81 7f 7f 81 81 81 7f 7f 7f 7f 7f 7f 81 7f 81 81 81 7f 7f 7f 7f  7f  81  81 81 81 81 7f 7f 81 81 7f 7f 7f 7f 7f 81 81 7f 7f 81 7f 7f 81 81 7f 7f 81 81 7f 81 7f 7f 81 81 81 81 7f 81 7f 81 81 7f 81 7f 7f 81 81 81 81 7f 81 7f 7f 7f 81 7f 7f 81 81 </span><br><span style="color: hsl(0, 100%, 40%);">-Decoded: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 2f 5f c6 36 43 44 03 </span><br><span style="color: hsl(120, 100%, 40%);">+81 7f 7f 7f 81 7f 81 81 81 7f 7f 7f 7f 7f 81 81 7f 7f 7f 7f 7f 7f 7f 7f 7f 7f 81 81 7f 81 7f 7f 81 7f 7f 7f 7f 7f 7f 7f 7f 7f 81 7f 81 81 7f 7f 81 81 81 7f 81 81 7f 7f 81  7f  7f  81 7f 81 81 81 7f 7f 81 81 7f 81 81 7f 7f 81 7f 7f 7f 81 81 7f 7f 7f 7f 7f 7f 7f 7f 81 81 81 7f 7f 81 7f 81 7f 7f 7f 7f 81 81 81 81 7f 7f 7f 81 81 7f 81 81 7f 7f 7f 7f 81 </span><br><span style="color: hsl(120, 100%, 40%);">+7f 7f 81 7f 81 81 81 81 7f 81 7f 7f 81 7f 7f 81 7f 81 7f 81 7f 81 7f 81 81 81 81 81 81 81 81 81 7f 7f 81 81 81 81 81 7f 81 81 81 81 81 81 81 7f 7f 81 81 81 7f 81 7f 7f 81  81  7f  7f 81 81 7f 81 7f 81 81 7f 81 81 7f 81 7f 81 7f 7f 7f 81 81 7f 81 81 7f 7f 7f 81 81 7f 7f 81 81 7f 7f 81 81 81 7f 81 81 7f 81 81 81 81 7f 7f 7f 81 7f 7f 81 7f 81 81 7f 7f </span><br><span style="color: hsl(120, 100%, 40%);">+81 81 7f 7f 7f 81 81 7f 7f 7f 7f 7f 7f 7f 81 7f 7f 7f 7f 81 7f 81 7f 81 7f 81 81 81 81 81 81 7f 81 7f 81 81 7f 7f 7f 81 81 81 7f 81 7f 81 81 81 81 81 7f 7f 81 81 81 81 7f  7f  7f  81 7f 7f 7f 7f 81 81 7f 81 81 7f 7f 7f 81 81 7f 7f 81 81 7f 81 81 7f 7f 81 81 7f 81 81 7f 7f 7f 7f 81 7f 81 7f 7f 7f 7f 7f 81 7f 7f 7f 7f 7f 81 7f 81 81 7f 7f 81 81 81 7f </span><br><span style="color: hsl(120, 100%, 40%);">+7f 81 81 81 7f 7f 7f 7f 81 7f 81 7f 7f 7f 7f 81 7f 7f 81 7f 7f 81 7f 81 7f 7f 81 7f 7f 7f 81 7f 7f 81 81 7f 81 7f 7f 81 81 81 7f 81 7f 7f 7f 7f 81 7f 81 81 81 7f 7f 7f 7f  7f  81  81 81 81 81 7f 7f 81 81 7f 7f 7f 7f 7f 81 81 7f 7f 81 7f 7f 81 81 7f 81 81 81 7f 81 7f 7f 81 81 81 81 7f 81 7f 7f 81 7f 81 7f 7f 81 81 81 81 7f 81 7f 7f 81 81 7f 7f 81 81 </span><br><span style="color: hsl(120, 100%, 40%);">+Decoded: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 af 5f c6 36 43 44 03 </span><br><span> pdtch_decode: n_errors=220 n_bits_total=676 ber=0.33</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-Encoding: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 2f 5f c6 36 43 44 03 d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 28 </span><br><span style="color: hsl(120, 100%, 40%);">+Encoding: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 28 </span><br><span> U-Bits:</span><br><span style="color: hsl(0, 100%, 40%);">-100010100101111101110101011001010100000101001001011011000 00  00  001000000000001100000110001011010111110101110101001100010</span><br><span style="color: hsl(0, 100%, 40%);">-010101000000101010101011110000010101000100000011010001101 00  01  010111110101110101010111011111100111010011010000111110111</span><br><span style="color: hsl(0, 100%, 40%);">-010111100101110011111100101110001010100110000010100000100 00  01  010111101110101111110011110101111101110100011000101111111</span><br><span style="color: hsl(0, 100%, 40%);">-011110100110000011110100111111101111111111111010101110000 01  00  001010101010101010101010111010110110000000100000101001011</span><br><span style="color: hsl(120, 100%, 40%);">+100010100101111101110101011001010100000101001001011011000 00  00  001010001000001100000111001011010111110101110101001101010</span><br><span style="color: hsl(120, 100%, 40%);">+010101000000001010101011110000010101000100000011010001101 00  01  010111010101110101010111011111100111010011010000111110111</span><br><span style="color: hsl(120, 100%, 40%);">+010111100101110011111100101111001010100110000011100000100 00  01  010111101110101111110011110101111101110100011000101111111</span><br><span style="color: hsl(120, 100%, 40%);">+011110100110000010110100111111111111111111111010101110000 01  00  001010101010101010101011111010110110010000100000101001011</span><br><span> S-Bits:</span><br><span style="color: hsl(0, 100%, 40%);">-81 7f 7f 7f 81 7f 81 7f 7f 81 7f 81 81 81 81 81 7f 81 81 81 7f 81 7f 81 7f 81 81 7f 7f 81 7f 81 7f 81 7f 7f 7f 7f 7f 81 7f 81 7f 7f 81 7f 7f 81 7f 81 81 7f 81 81 7f 7f 7f  7f  7f  7f 7f 81 7f 7f 7f 7f 7f 7f 7f 7f 7f 7f 7f 81 81 7f 7f 7f 7f 7f 81 81 7f 7f 7f 81 7f 81 81 7f 81 7f 81 81 81 81 81 7f 81 7f 81 81 81 7f 81 7f 81 7f 7f 81 81 7f 7f 7f 81 7f </span><br><span style="color: hsl(0, 100%, 40%);">-7f 81 7f 81 7f 81 7f 7f 7f 7f 7f 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 81 81 81 7f 7f 7f 7f 7f 81 7f 81 7f 81 7f 7f 7f 81 7f 7f 7f 7f 7f 7f 81 81 7f 81 7f 7f 7f 81 81 7f 81  7f  81  7f 81 7f 81 81 81 81 81 7f 81 7f 81 81 81 7f 81 7f 81 7f 81 7f 81 81 81 7f 81 81 81 81 81 81 7f 7f 81 81 81 7f 81 7f 7f 81 81 7f 81 7f 7f 7f 7f 81 81 81 81 81 7f 81 81 81 </span><br><span style="color: hsl(0, 100%, 40%);">-7f 81 7f 81 81 81 81 7f 7f 81 7f 81 81 81 7f 7f 81 81 81 81 81 81 7f 7f 81 7f 81 81 81 7f 7f 7f 81 7f 81 7f 81 7f 7f 81 81 7f 7f 7f 7f 7f 81 7f 81 7f 7f 7f 7f 7f 81 7f 7f  7f  81  7f 81 7f 81 81 81 81 7f 81 81 81 7f 81 7f 81 81 81 81 81 81 7f 7f 81 81 81 81 7f 81 7f 81 81 81 81 81 7f 81 81 81 7f 81 7f 7f 7f 81 81 7f 7f 7f 81 7f 81 81 81 81 81 81 81 </span><br><span style="color: hsl(0, 100%, 40%);">-7f 81 81 81 81 7f 81 7f 7f 81 81 7f 7f 7f 7f 7f 81 81 81 81 7f 81 7f 7f 81 81 81 81 81 81 81 7f 81 81 81 81 81 81 81 81 81 81 81 81 81 7f 81 7f 81 7f 81 81 81 7f 7f 7f 7f  81  7f  7f 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 81 81 7f 81 7f 81 81 7f 81 81 7f 7f 7f 7f 7f 7f 7f 81 7f 7f 7f 7f 7f 81 7f 81 7f 7f 81 7f 81 81 </span><br><span style="color: hsl(0, 100%, 40%);">-Decoded: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 2f 5f c6 36 43 44 03 d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 28 </span><br><span style="color: hsl(120, 100%, 40%);">+81 7f 7f 7f 81 7f 81 7f 7f 81 7f 81 81 81 81 81 7f 81 81 81 7f 81 7f 81 7f 81 81 7f 7f 81 7f 81 7f 81 7f 7f 7f 7f 7f 81 7f 81 7f 7f 81 7f 7f 81 7f 81 81 7f 81 81 7f 7f 7f  7f  7f  7f 7f 81 7f 81 7f 7f 7f 81 7f 7f 7f 7f 7f 81 81 7f 7f 7f 7f 7f 81 81 81 7f 7f 81 7f 81 81 7f 81 7f 81 81 81 81 81 7f 81 7f 81 81 81 7f 81 7f 81 7f 7f 81 81 7f 81 7f 81 7f </span><br><span style="color: hsl(120, 100%, 40%);">+7f 81 7f 81 7f 81 7f 7f 7f 7f 7f 7f 7f 7f 81 7f 81 7f 81 7f 81 7f 81 81 81 81 7f 7f 7f 7f 7f 81 7f 81 7f 81 7f 7f 7f 81 7f 7f 7f 7f 7f 7f 81 81 7f 81 7f 7f 7f 81 81 7f 81  7f  81  7f 81 7f 81 81 81 7f 81 7f 81 7f 81 81 81 7f 81 7f 81 7f 81 7f 81 81 81 7f 81 81 81 81 81 81 7f 7f 81 81 81 7f 81 7f 7f 81 81 7f 81 7f 7f 7f 7f 81 81 81 81 81 7f 81 81 81 </span><br><span style="color: hsl(120, 100%, 40%);">+7f 81 7f 81 81 81 81 7f 7f 81 7f 81 81 81 7f 7f 81 81 81 81 81 81 7f 7f 81 7f 81 81 81 81 7f 7f 81 7f 81 7f 81 7f 7f 81 81 7f 7f 7f 7f 7f 81 81 81 7f 7f 7f 7f 7f 81 7f 7f  7f  81  7f 81 7f 81 81 81 81 7f 81 81 81 7f 81 7f 81 81 81 81 81 81 7f 7f 81 81 81 81 7f 81 7f 81 81 81 81 81 7f 81 81 81 7f 81 7f 7f 7f 81 81 7f 7f 7f 81 7f 81 81 81 81 81 81 81 </span><br><span style="color: hsl(120, 100%, 40%);">+7f 81 81 81 81 7f 81 7f 7f 81 81 7f 7f 7f 7f 7f 81 7f 81 81 7f 81 7f 7f 81 81 81 81 81 81 81 81 81 81 81 81 81 81 81 81 81 81 81 81 81 7f 81 7f 81 7f 81 81 81 7f 7f 7f 7f  81  7f  7f 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 7f 81 81 81 81 81 7f 81 7f 81 81 7f 81 81 7f 7f 81 7f 7f 7f 7f 81 7f 7f 7f 7f 7f 81 7f 81 7f 7f 81 7f 81 81 </span><br><span style="color: hsl(120, 100%, 40%);">+Decoded: a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 59 a8 42 a3 af 5f c6 36 43 44 ab a3 af 5f c6 36 43 44 ab d9 6d 7d 62 24 c9 d2 92 fa 27 5d 71 7a 28 </span><br><span> pdtch_decode: n_errors=0 n_bits_total=444 ber=0.00</span><br><span> </span><br><span> Encoding: 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14 15 16 17 </span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.osmocom.org/c/libosmocore/+/17763">change 17763</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.osmocom.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.osmocom.org/c/libosmocore/+/17763"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: libosmocore </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: Iffd0ca3669eb8d0d2e80d754fc8acbf72f1bebe8 </div>
<div style="display:none"> Gerrit-Change-Number: 17763 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: pespin <pespin@sysmocom.de> </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>