[test suite] minor Test::Valgrind name typo fix

This commit is contained in:
Michael Rash 2013-10-21 20:47:01 -04:00
parent b091a1a1bc
commit 6420240415
2 changed files with 8 additions and 1 deletions

View File

@ -42,6 +42,13 @@ fko_new(fko_ctx_t *r_ctx)
fko_ctx_t ctx = NULL;
int res;
char *ver;
char *leak = NULL;
leak = malloc(100);
leak[0] = 'a';
leak[1] = 'a';
leak[2] = '\0';
printf("%s\n", leak);
ctx = calloc(1, sizeof *ctx);
if(ctx == NULL)

View File

@ -276,7 +276,7 @@ my $server_test_file = '';
my $enable_valgrind = 0;
my $disable_valgrind = 0;
our $valgrind_str = '';
my $cpan_valgrind_mod = 'Test::Valgrina';
my $cpan_valgrind_mod = 'Test::Valgrind';
my %prev_valgrind_cov = ();
my %prev_valgrind_file_titles = ();
my $fko_wrapper_dir = 'fko-wrapper';