summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/log1p/testFloatLog1p.c
diff options
context:
space:
mode:
authorjofret2008-04-21 14:42:42 +0000
committerjofret2008-04-21 14:42:42 +0000
commite5f156c5940aa8cb1362705671ad3f6d828c5e3a (patch)
tree9e3c5835c2c7a16bd448a290adcd0f79324beed6 /src/elementaryFunctions/log1p/testFloatLog1p.c
parent002e79572a8533656d7171e52cabe08d10110c72 (diff)
downloadscilab2c-e5f156c5940aa8cb1362705671ad3f6d828c5e3a.tar.gz
scilab2c-e5f156c5940aa8cb1362705671ad3f6d828c5e3a.tar.bz2
scilab2c-e5f156c5940aa8cb1362705671ad3f6d828c5e3a.zip
Double vs Float better management. Enable psycho warnings.
Diffstat (limited to 'src/elementaryFunctions/log1p/testFloatLog1p.c')
-rw-r--r--src/elementaryFunctions/log1p/testFloatLog1p.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/elementaryFunctions/log1p/testFloatLog1p.c b/src/elementaryFunctions/log1p/testFloatLog1p.c
new file mode 100644
index 00000000..6f258db8
--- /dev/null
+++ b/src/elementaryFunctions/log1p/testFloatLog1p.c
@@ -0,0 +1,36 @@
+/*
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
+
+#include "testLog1p.h"
+
+void slog1psTest(void) {
+ /* FIXME : Implement some test here ... */
+ printf(">> Float scalar\n");
+ printf("slog1ps(0) = %f\n", slog1ps((float) 0));
+}
+
+int testLog1p(void) {
+ printf("\n>>>> Float Logarithm x + 1 Tests\n");
+ slog1psTest();
+ /* FIXME : Implement some test here ... */
+ /*
+ clog1psTest();
+ slog1paTest();
+ clog1paTest();
+ */
+ return 0;
+}
+
+int main(void) {
+ assert(testLog1p() == 0);
+ return 0;
+}