Update lists of wrapped functions.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8726 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Kevin Ruland 2006-02-06 13:54:09 +00:00
commit 48ced2736d
5 changed files with 9 additions and 15 deletions

View file

@ -3,7 +3,7 @@
require "tests.php4";
require "abstract_inherit.php";
check::classes(array(foo,bar,spam));
check::classes(array(foo,bar,spam,nrfilter_i,nrrcfilter_i,nrrcfilterpro_i,nrrcfilterpri_i));
// This constructor attempt should fail as there isn't one
//$spam=new Spam();

View file

@ -4,11 +4,9 @@
require "tests.php4";
require "arrays_global.php";
// No new functions
check::functions(array());
// No new classes
check::classes(array(simplestruct));
check::globals(array(array_c,array_sc,array_uc,array_s,array_us,array_i,array_ui,array_l,array_ul,array_ll,array_f,array_d,array_struct,array_structpointers,array_ipointers,array_enum,array_enumpointers,array_const_i));
check::functions(array(test_a,test_b));
check::classes(array(simplestruct,material));
check::globals(array(array_c,array_sc,array_uc,array_s,array_us,array_i,array_ui,array_l,array_ul,array_ll,array_f,array_d,array_struct,array_structpointers,array_ipointers,array_enum,array_enumpointers,array_const_i,beginstring_fix44a,beginstring_fix44b,beginstring_fix44c,beginstring_fix44d,beginstring_fix44e,beginstring_fix44f,chitmat,hitmat_val,hitmat));
check::set(array_c,"hac");
check::equal("ha",check::get(array_c,"ha"),"set array_c");

View file

@ -4,11 +4,9 @@
require "tests.php4";
require "arrays_global_twodim.php";
// No new functions
check::functions(array(fn_taking_arrays,get_2d_array));
// No new classes
check::classes(array(simplestruct));
check::globals(array(array_c,array_sc,array_uc,array_s,array_us,array_i,array_ui,array_l,array_ul,array_ll,array_f,array_d,array_struct,array_structpointers,array_ipointers,array_enum,array_enumpointers,array_const_i));
check::classes(array(simplestruct,material));
check::globals(array(array_c,array_sc,array_uc,array_s,array_us,array_i,array_ui,array_l,array_ul,array_ll,array_f,array_d,array_struct,array_structpointers,array_ipointers,array_enum,array_enumpointers,array_const_i,chitmat,hitmat_val,hitmat));
$a1=array(10,11,12,13);
$a2=array(14,15,16,17);
$a=array($a1,$a2);

View file

@ -4,11 +4,9 @@
require "tests.php4";
require "class_ignore.php";
// No new functions
check::functions(array(do_blah));
// No new classes
check::classes(array(bar));
// now new vars
check::classes(array(bar,boo,far,hoo));
// No new vars
check::globals(array());
$bar=new bar();

View file

@ -3,7 +3,7 @@
require "tests.php4";
require "conversion_ns_template.php";
check::classes(array("foo_one","bar_one"));
check::classes(array("foo_one","bar_one","hi"));
// this is too hard, I'm not sure what to test for,
check::done();