Add argcargv test case to test-suite
diff --git a/Examples/test-suite/common.mk b/Examples/test-suite/common.mk
index 57e6638..69f3811 100644
--- a/Examples/test-suite/common.mk
+++ b/Examples/test-suite/common.mk
@@ -117,6 +117,7 @@
 	anonymous_bitfield \
 	apply_signed_char \
 	apply_strings \
+	argcargvtest \
 	argout \
 	array_member \
 	array_typedef_memberin \
diff --git a/Examples/test-suite/octave/argcargvtest_runme.m b/Examples/test-suite/octave/argcargvtest_runme.m
deleted file mode 100644
index f246dd9..0000000
--- a/Examples/test-suite/octave/argcargvtest_runme.m
+++ /dev/null
@@ -1,29 +0,0 @@
-argcargvtest
-
-largs={'hi','hola','hello'};
-if (mainc(largs) != 3)
-  error("bad main typemap");
-endif
-
-targs={'hi','hola'};
-if (mainv(targs,1) != 'hola')
-  error("bad main typemap");
-endif
-
-targs={'hi', 'hola'};
-if (mainv(targs,1) != 'hola')
-  error("bad main typemap");
-endif
-
-try
-  error_flag = 0;
-  mainv('hello',1);
-  error_flag = 1;
-catch
-end_try_catch
-if (error_flag)
-  error("bad main typemap")
-endif
-
-
-initializeApp(largs);
diff --git a/Examples/test-suite/python/Makefile.in b/Examples/test-suite/python/Makefile.in
index c061f90..ddcd4af 100644
--- a/Examples/test-suite/python/Makefile.in
+++ b/Examples/test-suite/python/Makefile.in
@@ -20,7 +20,6 @@
 top_builddir = @top_builddir@
 
 CPP_TEST_CASES += \
-	argcargvtest \
 	callback \
 	complextest \
 	director_stl \