mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 09:59:54 +00:00
92 lines
2.6 KiB
C
92 lines
2.6 KiB
C
/*
|
|
** Copyright (C) 2010-2013 Erik de Castro Lopo <erikd@mega-nerd.com>
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU Lesser General Public License as published by
|
|
** the Free Software Foundation; either version 2.1 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU Lesser General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU Lesser General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "sfconfig.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "common.h"
|
|
|
|
#include "test_main.h"
|
|
|
|
#define CART_MAX 512
|
|
|
|
typedef SF_CART_INFO_VAR (CART_MAX) SF_CART_INFO_512 ;
|
|
|
|
static void
|
|
fill_tag_text (SF_CART_INFO_512 * ci)
|
|
{ static const char *lines [] =
|
|
{ "Lorem ipsum dolor sit amet,\nconsectetur adipiscing elit.",
|
|
"Donec dignissim erat\nvehicula libero condimentum\ndictum porta augue faucibus.",
|
|
"Maecenas nec turpis\nsit amet quam\nfaucibus adipiscing.",
|
|
"Mauris aliquam,\nlectus interdum\ntincidunt luctus.",
|
|
"\n\n\n\n\n\n\n\n\n\n\n\n",
|
|
"In auctor lorem\nvel est euismod\ncondimentum.",
|
|
"\n\n\n\n\n\n\n\n\n\n\n\n",
|
|
"Ut vitae magna\nid dui placerat vehicula\nin id lectus.",
|
|
"\n\n\n\n\n\n\n\n\n\n\n\n",
|
|
"Sed lacus leo,\nmolestie et luctus ac,\ntincidunt sit amet nisi.",
|
|
"\n\n\n\n\n\n\n\n\n\n\n\n",
|
|
"Sed ligula neque,\ngravida semper vulputate laoreet,\ngravida eu tellus.",
|
|
"Donec dolor dolor,\nscelerisque in consequat ornare,\ntempor nec nisl."
|
|
} ;
|
|
int k ;
|
|
|
|
ci->tag_text [0] = 0 ;
|
|
|
|
for (k = 0 ; strlen (ci->tag_text) < ci->tag_text_size - 1 ; k ++)
|
|
append_snprintf (ci->tag_text, ci->tag_text_size, "%s\n", lines [k % ARRAY_LEN (lines)]) ;
|
|
|
|
return ;
|
|
} /* fill_tag_text */
|
|
|
|
void
|
|
test_cart_var (void)
|
|
{ SF_PRIVATE sf_private, *psf ;
|
|
SF_CART_TIMER timer ;
|
|
int k ;
|
|
|
|
psf = &sf_private ;
|
|
memset (psf, 0, sizeof (sf_private)) ;
|
|
|
|
print_test_name ("Testing cart_var_set ") ;
|
|
|
|
for (k = 64 ; k < CART_MAX ; k++)
|
|
{
|
|
SF_CART_INFO_512 ci ;
|
|
|
|
memset (&ci, 0, sizeof (ci)) ;
|
|
|
|
memset (&timer, 0, sizeof (timer)) ;
|
|
memcpy (ci.post_timers, &timer, sizeof (timer)) ;
|
|
|
|
ci.tag_text_size = k ;
|
|
fill_tag_text (&ci) ;
|
|
ci.tag_text_size -- ;
|
|
|
|
cart_var_set (psf, (SF_CART_INFO*) &ci, sizeof (ci)) ;
|
|
} ;
|
|
|
|
if (psf->cart_16k != NULL)
|
|
free (psf->cart_16k) ;
|
|
|
|
puts ("ok") ;
|
|
} /* test_cart_var */
|