Skip to content

Commit

Permalink
src/kaiser_window_test.c : Change result reporting.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Aug 6, 2012
1 parent 34861fc commit 54e98f4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/kaiser_window_test.c
@@ -1,5 +1,5 @@
/*
** Copyright (C) 2007-2011 Erik de Castro Lopo <erikd@mega-nerd.com>
** Copyright (C) 2007-2012 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 General Public License as published by
Expand Down Expand Up @@ -29,6 +29,9 @@ main (void)
double window [2000] ;
int k ;

printf ("%-37s : ", "kaiser_window_test") ;
fflush (stdout) ;

calc_kaiser_window (window, ARRAY_LEN (window), 1.0) ;

for (k = 0 ; k < ARRAY_LEN (window) ; k++)
Expand All @@ -55,7 +58,7 @@ main (void)
exit (1) ;
} ;

puts ("----------------------\n Passed\n----------------------") ;
puts ("ok") ;

return 0 ;
} /* main */

0 comments on commit 54e98f4

Please sign in to comment.