From 5fcd2352aa1dd7a7b22fd37e9e529a8414bf30e1 Mon Sep 17 00:00:00 2001 From: jofret Date: Wed, 14 Feb 2007 16:40:33 +0000 Subject: * src/test/test*.c : Add some FIXME in order to remember to code some tests. * src/test/testFind.c : Testing of the find function. * src/test/testIsEmpty.c : Testing of the isEmpty function. * src/misc : Create for misc includes. * src/auxiliaryFunctions/find/notFound.h : Moved * src/misc/notFound.h : Better use here. * */*/Makefile : Modify all Makefiles. Remove -pedantic. Must be crazy to use this... * src/auxiliaryFunctions/isempty : IsEmpty functions implementation. * src/auxiliaryFunctions/isempty/{sdcz}isEmptya.c : Implementation : s(float) d(double) c(floatComplex) z(doubleComplex) --- src/test/testExp.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/test/testExp.c') diff --git a/src/test/testExp.c b/src/test/testExp.c index 8f6c921b..05145832 100644 --- a/src/test/testExp.c +++ b/src/test/testExp.c @@ -5,7 +5,7 @@ ** Made by Bruno JOFRET ** ** Started on Fri Dec 8 15:05:44 2006 jofret -** Last update Wed Jan 31 09:25:30 2007 jofret +** Last update Wed Feb 14 17:35:58 2007 jofret ** ** Copyright INRIA 2006 */ @@ -49,8 +49,17 @@ void dexpsTest() { } int testExp() { - printf(">>>> Exponential Tests\n"); + printf("\n>>>> Exponential Tests\n"); sexpsTest(); dexpsTest(); + /* FIXME : Implement some test here ... */ + /* + cexpsTest(); + zexpsTest(); + sexpaTest(); + dexpaTest(); + cexpaTest(); + zexpaTest(); + */ return 0; } -- cgit