Skip to content

Instantly share code, notes, and snippets.

View akoeplinger's full-sized avatar

Alexander Köplinger akoeplinger

View GitHub Profile
diff --git a/mono/mini/aot-compiler.c b/mono/mini/aot-compiler.c
index 3c4e3aa899f..d586e3db939 100644
--- a/mono/mini/aot-compiler.c
+++ b/mono/mini/aot-compiler.c
@@ -11688,8 +11688,14 @@ mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
acfg->tmpfname = g_strdup_printf ("%s.s", acfg->image->name);
acfg->fp = fopen (acfg->tmpfname, "w+");
} else {
- int i = g_file_open_tmp ("mono_aot_XXXXXX", &acfg->tmpfname, NULL);
- acfg->fp = fdopen (i, "w+");
diff --git a/mono/mini/Makefile.am.in b/mono/mini/Makefile.am.in
index 5942258..b89b374 100755
--- a/mono/mini/Makefile.am.in
+++ b/mono/mini/Makefile.am.in
@@ -823,20 +823,7 @@ EXTRA_DIST = TestDriver.cs \
Makefile.am.in
version.h: Makefile
- if test -d $(top_srcdir)/.git; then \
- (cd $(top_srcdir); \
Failed test(s):
sgen-new-threads-dont-join-stw.exe
=============== sgen-new-threads-dont-join-stw.exe.stdout ===============
........
.
=============== EOF ===============
=============== sgen-new-threads-dont-join-stw.exe.stderr ===============
Stacktrace:
@akoeplinger
akoeplinger / gist:eafdca68056f12862afe
Created February 26, 2016 11:42
Fetch test results from Jenkins
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;
Failed tests:
ms-coreclr-tests/src/JIT/CodeGenBringUpTests/Localloc.exe
1
2
3
4
1
2
3