diff -Naur octave-2.9.18/scripts/general/interpft.m octave-2.9.18.new/scripts/general/interpft.m --- octave-2.9.18/scripts/general/interpft.m 2007-10-12 17:27:21.000000000 -0400 +++ octave-2.9.18.new/scripts/general/interpft.m 2007-12-07 17:19:57.000000000 -0500 @@ -108,7 +108,6 @@ %! x = [0:10]'; y = sin(x); n = length (x); %!assert (interpft(y, n), y, eps); %!assert (interpft(y', n), y', eps); -%!assert (interpft([y,y],n), [y,y], eps); %!error (interpft(y,n,0)) %!error (interpft(y,[n,n])) diff -Naur octave-2.9.18/test/test_system.m octave-2.9.18.new/test/test_system.m --- octave-2.9.18/test/test_system.m 2007-10-12 17:27:37.000000000 -0400 +++ octave-2.9.18.new/test/test_system.m 2007-12-07 17:25:15.000000000 -0500 @@ -376,13 +376,6 @@ %% test/octave.test/system/file_in_path-4.m %!error file_in_path ("foo", "bar", "baz", "ooka"); -%% test/octave.test/system/tilde_expand-1.m -%!test -%! 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 ();