rename custom testcases with a custom_ prefix (intermediary_classname.i and lib_arrays.i). Also some typo fixes for custom testcases

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11348 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2009-07-02 21:59:29 +00:00
commit 1adaae5780
8 changed files with 28 additions and 27 deletions

View file

@ -1,21 +0,0 @@
/***********************************************************************************************
NOTE: This is a custom testcase and should be run using make intermediary_classname.customtest
***********************************************************************************************/
using System;
using intermediary_classnameNamespace;
public class runme
{
static void Main()
{
// test the renamed module class is correctly named
double d = intermediary_classnameModule.maxdouble(10.0, 20.0);
if (d!=20.0) throw new Exception("Test failed");
// test the renamed intermediary class is correctly named
IntPtr ptr = intermediary_classname.new_vecdouble(10);
intermediary_classname.delete_vecdouble(new System.Runtime.InteropServices.HandleRef(null,ptr));
}
}