swig/Examples/test-suite/csharp
2010-07-28 05:53:17 +00:00
..
aggregate_runme.cs
allprotected_runme.cs
apply_strings_runme.cs
bools_runme.cs
catches_runme.cs
char_strings_runme.cs More string tests: char const*const 2010-05-01 10:01:26 +00:00
constover_runme.cs
csharp_attributes_runme.cs
csharp_exceptions_runme.cs
csharp_lib_arrays_runme.cs
csharp_prepost_runme.cs
csharp_typemaps_runme.cs
default_args_runme.cs
default_constructor_runme.cs
director_basic_runme.cs
director_classes_runme.cs
director_classic_runme.cs
director_ignore_runme.cs
director_primitives_runme.cs
director_protected_runme.cs
director_string_runme.cs
enum_thorough_runme.cs
enum_thorough_simple_runme.cs
enum_thorough_typesafe_runme.cs
exception_order_runme.cs
imports_runme.cs
inherit_target_language_runme.cs
intermediary_classname_runme.cs
li_attribute_runme.cs
li_boost_shared_ptr_bits_runme.cs Fix #3024875 - shared_ptr of classes with non-public destructors. This also fixes the 'unref' feature when used on classes with non-public destructors. 2010-07-07 18:19:01 +00:00
li_boost_shared_ptr_runme.cs
li_std_combinations_runme.cs Fix SWIG_STD_VECTOR_ENHANCED macro used in C# std::vector to work with commas 2010-06-01 23:10:22 +00:00
li_std_except_runme.cs
li_std_map_runme.cs SWIG license change - The Examples and Lib move to a very permissive license in the LICENSE file, removing the BSD license restrictions as agreed by committers since it was inadvertently introduced. Remove some examples where the impact of the license change is not clear. 2010-02-27 23:26:02 +00:00
li_std_string_runme.cs
li_std_vector_runme.cs
li_std_wstring_runme.cs
li_typemaps_runme.cs
long_long_runme.cs
Makefile.in Restore in source and out of source builds for the test-suite. Note that configure must be invoked using a relative path for out of source builds 2010-07-28 05:53:17 +00:00
member_pointer_runme.cs
nspace_extend_runme.cs Test %extend and nspace feature 2010-03-08 23:02:53 +00:00
nspace_runme.cs nspace fixes and adding in missing symbols in language symbol tables for Java and C# 2010-03-13 00:05:31 +00:00
operator_overload_runme.cs
overload_complicated_runme.cs
overload_template_runme.cs
pointer_reference_runme.cs
preproc_constants_c_runme.cs
preproc_constants_runme.cs
README
rename_pcre_enum_runme.cs Add support for "[not]regexmatch" and "regextarget" to %rename. 2010-07-22 17:02:10 +00:00
sizet_runme.cs
sneaky1_runme.cs
special_variable_macros_runme.cs
threads_runme.cs
throw_exception_runme.cs
typemap_namespace_runme.cs
typemap_out_optimal_runme.cs
varargs_runme.cs
virtual_poly_runme.cs

SWIG testsuite README file
--------------------------

This testsuite is here to ensure SWIG can handle a wide range of c/c++
syntax. The testsuite comprises many testcases in this directory. Each
test case is tested under each of the language modules thereby
thoroughly testing all of SWIG. It ensures that each of the language
modules are at a similar standard.

Those modules that support shadow classes run the tests producing
shadow classes to test the full language module functionality.

Some test cases need a runtime test. These need implementing in each
of the language modules. The language modules look for a file in the
language specific test-suite directory which has _runme appended after
the testcase name. If one is found it will be run as part of the test.

Some language modules add to this common set of test cases for
language specific tests. These can be found in the appropriate
language test-suite directory. There is also a README in each of the
language module directories.

For each testcase a message showing which testcase is being tested is
displayed. Nothing else is printed unless the test fails.


Some Developer Guidelines
-------------------------

Note that the whole test suite need not be run each time a testcase is
modified. An individual testcase may be run by going to the language
module test-suite directory and using make testcasename.xxx where xxx
is the type of test (eg cpptest). See common.mk. make -s doesn't print
any junk on the screen and is useful for emulating the way make check
works from the SWIG root directory.

If there are runtime tests needed, don't print anything unless there
is an error in which case stderr is suggested.

Please set the name of the module to the same name as the testcase,
otherwise modules will not be found.