diff options
Diffstat (limited to 'tests/Test_strings.c')
-rw-r--r-- | tests/Test_strings.c | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/tests/Test_strings.c b/tests/Test_strings.c index bd38bb6..27f7215 100644 --- a/tests/Test_strings.c +++ b/tests/Test_strings.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2014 Free Software Foundation, Inc. + * Copyright (C) 2012-2022 Free Software Foundation, Inc. * * This file is part of LIBTASN1. * @@ -57,17 +57,20 @@ static const struct tv tv[] = { #define SSTR(x) sizeof(x)-1,x static const struct tv ber[] = { {ASN1_ETYPE_OCTET_STRING, - SSTR("\xa0\xa0"), - SSTR("\x24\x80\x04\x82\x00\x02\xa0\xa0\x00\x00")}, + SSTR ("\xa0\xa0"), + SSTR ("\x24\x80\x04\x82\x00\x02\xa0\xa0\x00\x00")}, {ASN1_ETYPE_OCTET_STRING, - SSTR("\xa0\xa0\xb0\xb0\xb0"), - SSTR("\x24\x80\x04\x82\x00\x02\xa0\xa0\x04\x82\x00\x03\xb0\xb0\xb0\x00\x00")}, + SSTR ("\xa0\xa0\xb0\xb0\xb0"), + SSTR + ("\x24\x80\x04\x82\x00\x02\xa0\xa0\x04\x82\x00\x03\xb0\xb0\xb0\x00\x00")}, {ASN1_ETYPE_OCTET_STRING, - SSTR("\xa0\xa0\xb0\xb0\xb0\xa1\xa1"), - SSTR("\x24\x80\x04\x82\x00\x02\xa0\xa0\x04\x82\x00\x03\xb0\xb0\xb0\x24\x80\x04\x82\x00\x02\xa1\xa1\x00\x00\x00\x00")}, + SSTR ("\xa0\xa0\xb0\xb0\xb0\xa1\xa1"), + SSTR + ("\x24\x80\x04\x82\x00\x02\xa0\xa0\x04\x82\x00\x03\xb0\xb0\xb0\x24\x80\x04\x82\x00\x02\xa1\xa1\x00\x00\x00\x00")}, {ASN1_ETYPE_OCTET_STRING, - SSTR("\xa0\xa0\xb0\xb0\xb0\xa1\xa1\xc1"), - SSTR("\x24\x80\x04\x82\x00\x02\xa0\xa0\x04\x82\x00\x03\xb0\xb0\xb0\x24\x80\x04\x82\x00\x02\xa1\xa1\x04\x82\x00\x01\xc1\x00\x00\x00\x00")}, + SSTR ("\xa0\xa0\xb0\xb0\xb0\xa1\xa1\xc1"), + SSTR + ("\x24\x80\x04\x82\x00\x02\xa0\xa0\x04\x82\x00\x03\xb0\xb0\xb0\x24\x80\x04\x82\x00\x02\xa1\xa1\x04\x82\x00\x01\xc1\x00\x00\x00\x00")}, }; int @@ -145,7 +148,7 @@ main (int argc, char *argv[]) i, str_len, ber[i].str_len); return 1; } - free(b); + free (b); } |