[xbuild] Add support for Before/AfterTargets.
[mono.git] / mono / tests / ChangeLog
index c44cce4683058d350a2990c14af5fb507667c303..d541406211e3c8348f053dfb280eb2bbacf61237 100644 (file)
@@ -1,3 +1,230 @@
+2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * bug-389886-3.cs: New regression test.
+
+2010-07-10  Jonathan Pryor <jpryor@novell.com>
+
+       * Makfile.am (test-process-exit): Expected output is in $srcdir.
+
+2010-07-06  Zoltan Varga  <vargaz@gmail.com>
+
+       * bug-81691.cs: Fix this test by catching FileNotFoundException as well.
+
+2010-06-29  Zoltan Varga  <vargaz@gmail.com>
+
+       * Makefile.am: Disable bug-459094.exe it creates a very deep directory hierarchy
+       without cleaning it up.
+
+       * Makefile.am (bug-81691.exe): Fix the dependencies of this test.
+
+2010-06-26  Mark Probst  <mark.probst@gmail.com>
+
+       * bug-616463.cs: New test.
+
+       * Makefile.am: Test added to generic tests.
+
+2010-06-25  Zoltan Varga  <vargaz@gmail.com>
+
+       * Makefile.am: Add an 'SGEN' make variable to allow tests to be run with SGEN.
+
+2010-06-15  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs dtest-app.cs: Removed, moved to mcs/Mono.Debugger.Soft.
+
+2010-06-10  Jonathan Pryor  <jpryor@novell.com>
+
+       * Makefile.am: Add test-process-exit target.
+       * bug-438454.cs: Added; test case for #438454.
+       * bug-438454.exe.stdout.expected: Added; expected output when
+         executing bug-438454.exe, to test the ordering of the
+         AppDomain.ProcessExit event wrt ThreadPool disposal.
+
+2010-06-04  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs dtest-app.cs: Add tests for StackFrame.GetVisibleVariables ().
+
+2010-05-31  Robert Jordan  <robertj@gmx.net>
+
+       * pinvoke2.cs (test_0_calli_dynamic): Use the cdecl version
+       of mono_test_marshal_inout_array. Fixes the test when compiled
+       with MSC (and GCC where it worked by accident).
+
+       * libtest.c (mono_test_marshal_inout_array_cdecl):
+       New. cdecl wrapper for the function with the same name.
+
+2010-05-31  Robert Jordan  <robertj@gmx.net>
+
+       * libtest.c (mono_test_marshal_lookup_symbol): Export as STDCALL because
+       it's DllImported from pinvoke2.
+
+2010-05-28  Robert Jordan  <robertj@gmx.net>
+
+       * libtest.c: Implement and use marshal_strdup () as a g_strdup ()
+       replacement under Windows. Fixes memory allocation mismatches.
+
+2010-05-27  Zoltan Varga  <vargaz@gmail.com>
+
+       * interlocked.cs: Add a test for Interlocked.Exchange on a local variable.
+
+2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * typeload-unaligned.cs: Move the reference to the broken type
+       to an inner function since mono now detects the brokenness earlier.
+
+2010-05-13  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs: Add a test for nullref exceptions + single threaded invokes.
+
+2010-05-12  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs dtest-app.cs: Add a test for pending breakpoints in domains.
+
+2010-04-30  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs: Add a test for TypeMirror.GetSourceFiles (true).
+
+2010-04-27  Zoltan Varga  <vargaz@gmail.com>
+
+       * load-missing.il: Make BrokenClass inherit from a class in t, not mscorlib, so
+       mcs can load load-missing.dll as a reference.
+
+2010-04-27  Zoltan Varga  <vargaz@gmail.com>
+
+       * Makefile.am (DISABLED_TESTS): Add gc-altstack.exe since it randomly fails
+       under Boehm, which can't handle threads which are executing on an altstack during
+       stack marking.
+
+2010-04-10  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs: Add a minimal test for Thread.ThreadId.
+
+2010-04-08  Zoltan Varga  <vargaz@gmail.com>
+
+       * exit-stress-threadpool.cs: New stress test.
+
+2010-04-07  Zoltan Varga  <vargaz@gmail.com>
+
+       * interlocked-2.2.cs: Add an Interlocked.CompareExchange(long) test.
+
+2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * bug-575941.cs: New regression test.
+
+2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * bug-515884.il: New regression test.
+
+2010-04-02  Zoltan Varga  <vargaz@gmail.com>
+
+       * libtest.c: Add OpenBSD to the list of defines.
+
+2010-03-26  Zoltan Varga  <vargaz@gmail.com>
+
+       * Makefile.am: Disable testbundle for now as it depends on having a system mono.
+
+2010-03-23  Zoltan Varga  <vargaz@gmail.com>
+
+       * Makefile.am (BASE_TEST_CS_SRC): Remove make-imt-test.cs, it is not a test.
+
+       * test-runner.cs: Add an option to run the tests with different optimization
+       sets.
+
+       * Makefile.am: Make it possible to run the normal+gshared tests using the managed
+       test runner by passing the M=1 option to make.
+
+2010-03-18  Zoltan Varga  <vargaz@gmail.com>
+
+       * Makefile.am (runtest): Save the output of the aot compiler into a file.
+
+2010-03-05  Robert Jordan  <robertj@gmx.net>
+
+       * remoting4.cs: Add test for bug #504886.
+
+2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * bug-562150.cs: Regression test.
+
+2010-03-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
+
+       * Makefile.am: Renamed INSTALL_2_1 to MOONLIGHT.
+
+2010-03-01  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs: Add a test for CreateBoxedValue.
+
+2010-02-11  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs: Add a test for exception subclasses.
+
+2010-02-04  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs: Add a test for TypeMirror.EnumUnderlyingType.
+
+       * dtest.cs dtest-app.cs: Add tests for TypeMirror.IsEnum and
+       VirtualMachine.CreateEnumMirror ().
+
+2010-01-28  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs: Add minimal tests for assembly unloading.
+
+2010-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * large-gc-bitmap.cs: Respect the 1Mb size limit for valuetype types.
+
+2010-01-19  Sylvain Dupont <duposyl@gmail.com>
+
+       * cominterop.cs libtest.c: Added tests for marshalling
+         in, in/byref, in/out, in/out/byref parameters of type
+         SAFEARRAY[VARIANT].
+
+       Code is contributed under MIT/X11 license.
+
+2010-01-18  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs dtest-app.cs: Add a test for single stepping + out of line bblocks.
+
+       * dtest.cs: Upgrade after debugging namespace change.
+
+2010-01-16  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest-app.cs dtest.cs: Add tests for handling vtypes with IntPtr fields.
+
+2009-12-26  Zoltan Varga  <vargaz@gmail.com>
+
+       * bug-561239.cs: New test for bug #561239.
+
+2009-12-22  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs dtest-app.cs: Add more single stepping tests.
+
+2009-12-17  Zoltan Varga  <vargaz@gmail.com>
+
+       * libtest.c pinvoke2.cs: Add a test for calling pinvoke methods using calli.
+
+2009-12-05  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs dtest-app.cs: Add a test for intptrs.
+
+2009-12-01  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs: Add a a test for invokes on not suspended threads.
+
+2009-11-24  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs dtest-app.cs: Add a test for single threaded invokes + events.
+
+2009-11-23  Zoltan Varga  <vargaz@gmail.com>
+
+       * dtest.cs dtest-app.cs: Add a test for single threaded invokes.
+
+2009-11-20  Zoltan Varga  <vargaz@gmail.com>
+
+       * libtest.c (mono_test_marshal_bool_in): Use 'short' as the type of the
+       variant bool argument.
+
+       * marshalbool.cs: Pass -1 as the 'expected' argument instead of 0xffff, which
+       causes sign extensions issues on some platforms.
+
 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
 
        * dtest.cs: Add a test for AssemblyMirror.GetName ().