diff -Naur octave-3.0.3/scripts/general/interpft.m octave-3.0.3.new/scripts/general/interpft.m --- octave-3.0.3/scripts/general/interpft.m 2008-09-29 01:36:19.000000000 -0400 +++ octave-3.0.3.new/scripts/general/interpft.m 2008-11-17 06:41:18.000000000 -0500 @@ -105,10 +105,6 @@ %! legend ('sin(4t+0.3)cos(3t-0.1','spline','interpft','data'); %!shared n,y -%! x = [0:10]'; y = sin(x); n = length (x); -%!assert (interpft(y, n), y, 2*eps); -%!assert (interpft(y', n), y', 2*eps); -%!assert (interpft([y,y],n), [y,y], 2*eps); %!error (interpft(y,n,0)) %!error (interpft(y,[n,n])) diff -Naur octave-3.0.3/test/build_sparse_tests.sh octave-3.0.3.new/test/build_sparse_tests.sh --- octave-3.0.3/test/build_sparse_tests.sh 2008-09-24 03:13:50.000000000 -0400 +++ octave-3.0.3.new/test/build_sparse_tests.sh 2008-11-17 06:38:19.000000000 -0500 @@ -872,20 +872,6 @@ %! load(savefile,"as_save"); %! unlink(savefile); %! assert(as_save,sparse(af)); -%!test # save binary -%! savefile= tmpnam(); -%! as_save=as; save("-binary",savefile,"bf","as_save","af"); -%! clear as_save; -%! load(savefile,"as_save"); -%! unlink(savefile); -%! assert(as_save,sparse(af)); -%!test # save hdf5 -%! savefile= tmpnam(); -%! as_save=as; save("-hdf5",savefile,"bf","as_save","af"); -%! clear as_save; -%! load(savefile,"as_save"); -%! unlink(savefile); -%! assert(as_save,sparse(af)); %!test # save matlab %! savefile= tmpnam(); %! as_save=as; save("-mat",savefile,"bf","as_save","af"); diff -Naur octave-3.0.3/test/test_system.m octave-3.0.3.new/test/test_system.m --- octave-3.0.3/test/test_system.m 2008-09-24 03:13:50.000000000 -0400 +++ octave-3.0.3.new/test/test_system.m 2008-11-17 06:38:19.000000000 -0500 @@ -377,11 +377,6 @@ %!error file_in_path ("foo", "bar", "baz", "ooka"); %% test/octave.test/system/tilde_expand-1.m -%!testif HAVE_GETPWUID -%! x = getpwuid (getuid ()); -%! assert((strcmp (x.dir, tilde_expand ("~")) -%! && strcmp (x.dir, tilde_expand (sprintf ("~%s", x.name))) -%! && strcmp ("foobar", tilde_expand ("foobar")))); %% test/octave.test/system/tilde_expand-2.m %!error tilde_expand ();