lib_xxxx tests renamed to li_xxxx as a workaround in glib which Mono C# uses - libraries wont be loaded if they start with lib

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6591 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-11-01 22:56:31 +00:00
commit c611933db3
16 changed files with 911 additions and 14 deletions

View file

@ -0,0 +1,15 @@
<?php
// Sample test file
require "tests.php4";
require "lib_carrays.php";
// No new functions
check::functions(array(new_intarray,delete_intarray,intarray_getitem,intarray_setitem));
// No new classes
check::classes(array(doublearray));
// now new vars
check::globals(array());
check::done();
?>