Mercurial > hg > octave-lyh
changeset 7055:3e4dab6a136c
[project @ 2007-10-23 23:54:41 by jwe]
author | jwe |
---|---|
date | Tue, 23 Oct 2007 23:54:41 +0000 |
parents | 1c5b2b5b58ba |
children | 2002804df782 |
files | test/ChangeLog test/build_sparse_tests.sh |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2007-10-23 John W. Eaton <jwe@octave.org> + + * build_sparse_tests.sh (gen_sparsesparse_elementop_tests): + Use xtest for "assert(as./bs,sparse(af./bf,true),100*eps);" test. + 2007-10-12 John W. Eaton <jwe@octave.org> * Change copyright notices in all files that are part of Octave to
--- a/test/build_sparse_tests.sh +++ b/test/build_sparse_tests.sh @@ -334,7 +334,7 @@ %!assert(as+bs,sparse(af+bf,true)) %!assert(as-bs,sparse(af-bf,true)) %!assert(as.*bs,sparse(af.*bf,true)) -%!assert(as./bs,sparse(af./bf,true),100*eps); +%!xtest assert(as./bs,sparse(af./bf,true),100*eps); %!test %! sv = as.^bs; %! fv = af.^bf;