diff options
author | torset | 2009-02-11 11:14:05 +0000 |
---|---|---|
committer | torset | 2009-02-11 11:14:05 +0000 |
commit | 74f515c607592aa4bfbd03bdbd68fb365d71e60f (patch) | |
tree | 14edacae7118c12524fe4097c08bffbea8e08198 /src/matrixOperations/zeros | |
parent | 96de5d7059b0678305e78793b38dc97683d886b4 (diff) | |
download | scilab2c-74f515c607592aa4bfbd03bdbd68fb365d71e60f.tar.gz scilab2c-74f515c607592aa4bfbd03bdbd68fb365d71e60f.tar.bz2 scilab2c-74f515c607592aa4bfbd03bdbd68fb365d71e60f.zip |
Update
Diffstat (limited to 'src/matrixOperations/zeros')
-rw-r--r-- | src/matrixOperations/zeros/testMatrixZeros.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/matrixOperations/zeros/testMatrixZeros.c b/src/matrixOperations/zeros/testMatrixZeros.c index 37f0596b..b6ebe36f 100644 --- a/src/matrixOperations/zeros/testMatrixZeros.c +++ b/src/matrixOperations/zeros/testMatrixZeros.c @@ -108,13 +108,13 @@ static void czerosaTest ( void ) -static int testEye(void) { +static int testZeros(void) { - printf("\n>>>> Matrix ONES Tests\n"); - printf("\t>>>> Matrix Double Realt Tests\n"); + printf("\n>>>> Matrix ZEROS Tests\n"); + printf("\t>>>> Matrix Double Real Tests\n"); dzerosaTest(); - printf("\n\n\t>>>> Matrix Float Realt Tests\n"); + printf("\n\n\t>>>> Matrix Float Real Tests\n"); szerosaTest(); printf("\n\n\n"); @@ -131,7 +131,7 @@ static int testEye(void) { int main(void) { - assert(testEye() == 0); + assert(testZeros() == 0); return 0; } |