[meta] Fix loader printf mistake and outdated info in Makefile (#34602)
authorRyan Lucia <rylucia@microsoft.com>
Wed, 8 Apr 2020 05:10:34 +0000 (01:10 -0400)
committerGitHub <noreply@github.com>
Wed, 8 Apr 2020 05:10:34 +0000 (01:10 -0400)
src/mono/mono/metadata/assembly-load-context.c
src/mono/netcore/Makefile

index 9972a0b..017c62b 100644 (file)
@@ -53,7 +53,7 @@ mono_alc_cleanup (MonoAssemblyLoadContext *alc)
                MonoAssembly *assembly = (MonoAssembly *)tmp->data;
                g_slist_remove (domain->domain_assemblies, assembly);
                mono_atomic_dec_i32 (&assembly->ref_count);
-               mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_ASSEMBLY, "Unloading ALC [%p], removing assembly %s[%p] from domain_assemblies, ref_count=%d\n", assembly->aname.name, assembly->ref_count);
+               mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_ASSEMBLY, "Unloading ALC [%p], removing assembly %s[%p] from domain_assemblies, ref_count=%d\n", alc, assembly->aname.name, assembly, assembly->ref_count);
        }
        mono_domain_assemblies_unlock (domain);
 
index eb04765..25b47bb 100644 (file)
@@ -58,7 +58,7 @@ copy-runtime-files-to:
 
 # run specific coreclr test, e.g.:
 # make run-tests-coreclr CoreClrTest="bash ../../artifacts/tests/coreclr/OSX.x64.Release/JIT/opt/InstructionCombining/DivToMul/DivToMul.sh"
-# NOTE: make sure you've built them (cd src/coreclr && ./build-test.sh -c release)
+# NOTE: make sure you've built them (cd src/coreclr && ./build-test.sh release)
 run-tests-coreclr:
        $(DOTNET) msbuild /t:RunCoreClrTest /p:CoreClrTest="$(CoreClrTest)" $(MONO_PROJ)