Octave: add {save,load}_{ascii,binary,hdf} functions that silently do nothing;

give default operator mappings a more conventional suffix;
fix test li_std_string_extra.




git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11047 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Xavier Delacour 2009-01-10 00:20:46 +00:00
commit b6e44f2427
5 changed files with 173 additions and 106 deletions

View file

@ -23,16 +23,16 @@ endif
s = li_std_string_extra.string("he");
#s += "ll"
#s.append('o')
#s.append("ll")
s = s + "llo";
if (s != x)
error("bad string mapping: %s, %s", s, x);
endif
if (s[1:4] != x[1:4])
error("bad string mapping")
endif
#if (s(1:4) != x(1:4))
# error("bad string mapping")
#endif
if (li_std_string_extra.test_value(s) != x)
error("bad string mapping")
@ -63,11 +63,11 @@ if (a + " world" != "hello world")
error("bad string mapping")
endif
if ("hello" + b != "hello world")
error("bad string mapping")
endif
#if ("hello" + b != "hello world")
# error("bad string mapping")
#endif
c = ("hello" + b)
c = (li_std_string_extra.string("hello") + b);
if (c.find_last_of("l") != 9)
error("bad string mapping")
endif
@ -157,6 +157,6 @@ if (li_std_string_extra.c_empty() != "")
error
endif
if (li_std_string_extra.c_null() != None)
error
endif
#if (li_std_string_extra.c_null() != None)
# error
#endif