This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MONO_LOG_LEVEL=debug ./PlatformBenchmarks | |
Mono: Config attempting to parse: '/usr/local/etc/mono/config'. | |
Mono: Config attempting to parse: '/Users/steve/.mono/config'. | |
Mono: Assembly Loader probing location: '/Users/steve/dev/net5/Benchmarks/src/BenchmarksApps/Kestrel/PlatformBenchmarks/bin/Release/netcoreapp5.0/osx-x64/publish/System.Private.CoreLib.dll'. | |
Mono: Image addref System.Private.CoreLib[0x7fa0215282d0] (asmctx DEFAULT) -> /Users/steve/dev/net5/Benchmarks/src/BenchmarksApps/Kestrel/PlatformBenchmarks/bin/Release/netcoreapp5.0/osx-x64/publish/System.Private.CoreLib.dll[0x7f9ff2000c00]: 2 | |
Mono: Predicate: wanted = System.Private.CoreLib, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null | |
Mono: Predicate: candidate = System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e | |
Mono: Predicate: candidate and wanted names match, returning TRUE | |
Mono: Prepared to set up assembly 'System.Private.CoreLib' (/Users/steve/dev/net5/Benchmarks/src/BenchmarksApps/Kestrel/PlatformBe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 MONO_LOG_LEVEL=debug ./PlatformBenchmarks | |
Mono: Config attempting to parse: '/usr/local/etc/mono/config'. | |
Mono: Config attempting to parse: '/Users/steve/.mono/config'. | |
Mono: Assembly Loader probing location: '/Users/steve/dev/net5/Benchmarks/src/BenchmarksApps/Kestrel/PlatformBenchmarks/bin/Release/netcoreapp5.0/osx-x64/publish/System.Private.CoreLib.dll'. | |
Mono: Image addref System.Private.CoreLib[0x7fe1fdd13b50] (asmctx DEFAULT) -> /Users/steve/dev/net5/Benchmarks/src/BenchmarksApps/Kestrel/PlatformBenchmarks/bin/Release/netcoreapp5.0/osx-x64/publish/System.Private.CoreLib.dll[0x7fe1ee00d000]: 2 | |
Mono: Predicate: wanted = System.Private.CoreLib, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null | |
Mono: Predicate: candidate = System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e | |
Mono: Predicate: candidate and wanted names match, returning TRUE | |
Mono: Prepared to set up assembly 'System.Private.CoreLib' (/Users/steve/dev/net5/Benchmar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.Private.CoreLib -> /Users/steve/dev/net5/ak-runtime/artifacts/bin/mono/iOS.arm64.Debug/IL/System.Private.CoreLib.dll | |
/Users/steve/dev/net5/ak-runtime/src/libraries/Native/build-native.sh arm64 Debug outconfig netcoreapp5.0-iOS-Debug-arm64 -ios | |
Unknown CPU i386 detected, configuring as if for x64 | |
__DistroRid: ios-arm64 | |
__RuntimeId: ios-arm64 | |
Setting up directories for build | |
Checking prerequisites... | |
/usr/local/bin/cmake | |
Commencing build of "native libraries component" for iOS.arm64.Debug in /Users/steve/dev/net5/ak-runtime/artifacts/obj/native/netcoreapp5.0-iOS-Debug-arm64 | |
Restore completed in 37.03 ms for /Users/steve/dev/net5/ak-runtime/eng/empty.csproj. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WU2TEHPV08CX-06:alex-runtime steve$ ./build.sh -configuration release | |
Downloading 'https://dot.net/v1/dotnet-install.sh' | |
dotnet-install: Downloading link: https://dotnetcli.azureedge.net/dotnet/Sdk/5.0.100-alpha1-015772/dotnet-sdk-5.0.100-alpha1-015772-osx-x64.tar.gz | |
dotnet-install: Extracting zip from https://dotnetcli.azureedge.net/dotnet/Sdk/5.0.100-alpha1-015772/dotnet-sdk-5.0.100-alpha1-015772-osx-x64.tar.gz | |
dotnet-install: Adding to current process PATH: `/Users/steve/dev/alex-runtime/.dotnet`. Note: This change will be visible only when sourcing script. | |
dotnet-install: Installation finished successfully. | |
Restore completed in 839.61 ms for /Users/steve/dev/alex-runtime/tools-local/tasks/installer.tasks/installer.tasks.csproj. | |
installer.tasks -> /Users/steve/dev/alex-runtime/artifacts/bin/installer.tasks/Debug/netstandard2.0/installer.tasks.dll | |
Tool 'coverlet.console' (version '1.7.0') was restored. Available commands: coverlet | |
Tool 'dotnet-reportgenerator-globaltool' (version '4.4.2') was restor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace AsyncTest | |
{ | |
/// <summary>Provides a pump that supports running asynchronous methods on the current thread.</summary> | |
public static class AsyncPump |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
using System.Threading; | |
using System.IO; | |
using System.Collections.Generic; | |
namespace AsyncTest | |
{ | |
class MainClass | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by mono configure 6.5.0, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ /Users/steve/dev/test-branches/ios-local-tz/configure ac_cv_c_bigendian=no ac_cv_func_fstatat=no ac_cv_func_readlinkat=no ac_cv_func_getpwuid_r=no ac_cv_func_posix_getpwuid_r=yes ac_cv_header_curses_h=no ac_cv_header_localcharset_h=no ac_cv_header_sys_user_h=no ac_cv_func_getentropy=no ac_cv_func_futimens=no ac_cv_func_utimensat=no ac_cv_func_shm_open_working_with_mmap=no mono_cv_sizeof_sunpath=104 mono_cv_uscore=yes ac_cv_func_system=no ac_cv_func_pthread_kill=no ac_cv_func_kill=no ac_cv_func_sigaction=no ac_cv_func_fork=no ac_cv_func_execv=no ac_cv_func_execve=no ac_cv_func_execvp=no ac_cv_func_signal=no AR= AS= CC= /Applications/Xcode102.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang CPP= CXX= /Applications/Xcode102.app/Contents/Developer/Too |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.Net.Http.Functional.Tests.PlatformHandler_HttpClientEKUTest.HttpClient_ServerEKUClientAuth_Fails [SKIP] | |
Condition(s) not met: "CanTestClientCertificates" | |
System.Net.Http.Functional.Tests.PlatformHandler_HttpClientEKUTest.HttpClient_NoEKUClientAuth_Ok [SKIP] | |
Condition(s) not met: "CanTestClientCertificates" | |
System.Net.Http.Functional.Tests.PlatformHandler_HttpClientEKUTest.HttpClient_NoEKUServerAuth_Ok [SKIP] | |
Condition(s) not met: "CanTestCertificates" | |
System.Net.Http.Functional.Tests.PlatformHandler_HttpClientEKUTest.HttpClient_ClientEKUServerAuth_Fails [SKIP] | |
Condition(s) not met: "CanTestCertificates" | |
System.Net.Http.Functional.Tests.PlatformHandler_HttpClient_SelectedSites_Test.RetrieveSite_Succeeds [SKIP] | |
Condition(s) not met: "IsSelectedSitesTestEnabled" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Opcode 'r4_conv_to_ovf_u8_un' missing from machine description file. | |
================================================================= | |
Native Crash Reporting | |
================================================================= | |
Got a SIGABRT while executing native code. This usually indicates | |
a fatal error in the mono runtime or one of the native libraries | |
used by your application. | |
================================================================= |
NewerOlder