1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-11 18:20:26 +09:00
Commit graph

28108 commits

Author SHA1 Message Date
Viktor Hofer
2e7b5dbccc Cleanup System.ComponentModel.Composition
Fix failing tests & remove noisy output loggings

Use common threadculture and remove unused files

Cleanup test codebase & delete unused files

Remove resource from turd assembly

Auto format documents


Commit migrated from 78bf9d7974
2018-07-02 21:42:37 +02:00
Eric Erhardt
e484db7797 Update the OptionalTooling to work on .NET Core MSBuild. (dotnet/corefx#30762)
* Update the OptionalTooling to work on .NET Core MSBuild.

The official build broke because I moved the Windows build on to .NET Core MSBuild. We have some OptionalTooling that only gets restored during the official build, and the current approach (using project.json) doesn't work on .NET Core MSBuild. So migrating the tooling to use normal MSBuild PackageReferences.

Fix dotnet/corefx#30758

* Respond to PR feedback.

Upper case each section of the package name in the MSBuild version property.


Commit migrated from 6cec67359b
2018-07-02 14:30:45 -05:00
dotnet-maestro-bot
9305cfbe04 Update BuildTools, CoreSetup to preview1-03002-01, preview1-26702-03, respectively (dotnet/corefx#30786)
Commit migrated from be96620915
2018-07-02 14:27:09 -05:00
Hugh Bellamy
4a784487dc Add parameter name where missing
Fixes `SyndicationContentTests.WriteTo_EmptyOrNullName_ThrowsArgumentException`

Fixes `ServiceElementExtensionTests.Ctor_EmptyOuterName_ThrowsArgumentException`


Commit migrated from 434da5cff9
2018-07-02 12:07:37 -07:00
Hugh Bellamy
84e0380287 Add Syndication tests
Commit migrated from b0edc960e8
2018-07-02 12:07:37 -07:00
Hugh Bellamy
aa871766b9 Cleanup Syndication tests
Commit migrated from e20e5173ac
2018-07-02 12:07:37 -07:00
dotnet-maestro-bot
3c33773015 Update CoreClr, CoreSetup, ProjectNTfs, ProjectNTfsTestILC to preview1-26702-04, preview1-26702-01, beta-26702-00, beta-26702-00, respectively (dotnet/corefx#30778)
Commit migrated from e06a4fafe0
2018-07-02 10:23:03 -04:00
dotnet-maestro-bot
83201ef487 Update CoreClr, CoreSetup to preview1-26701-03, preview1-26701-01, respectively (dotnet/corefx#30773)
Commit migrated from 0256ac2cba
2018-07-01 15:10:15 -04:00
Tanner Gooding
1804bbac66 Fixing the names/parameter types for several Bmi1 HWIntrinsic methods
Commit migrated from 95b21631b4
2018-06-30 10:50:01 -07:00
dotnet-maestro-bot
ee29cc3bd1 Update CoreClr, CoreSetup to preview1-26630-03, preview1-26630-01, respectively
Commit migrated from 2f4141169c
2018-06-30 10:50:01 -07:00
dotnet-maestro-bot
473ba45dfe Update BuildTools, CoreClr, CoreFx, CoreSetup, ProjectNTfs, ProjectNTfsTestILC to preview1-02929-01, preview1-26630-01, preview1-26628-03, preview1-26629-04, beta-26629-00, beta-26629-00, respectively (master) (dotnet/corefx#30766)
* Update BuildTools, CoreClr, CoreFx, CoreSetup, ProjectNTfs, ProjectNTfsTestILC to preview1-02929-01, preview1-26630-01, preview1-26628-03, preview1-26629-04, beta-26629-00, beta-26629-00, respectively

* Use public implementation API RemoveEventHandler


Commit migrated from bcbf63568b
2018-06-29 23:00:13 -07:00
kasper3
5fe6bee2d0 Update brotli to v1.0.5 (dotnet/corefx#30751)
* Update brotli to v1.0.5

* Define BROTLI_SHARED_COMPILATION

* Set headers language to C

* Add brotli-version.txt


Commit migrated from b17387fd1e
2018-06-30 01:48:01 +02:00
William Godbe
8b83bf7b8f Delay console CPR timer once protocol has worked (dotnet/corefx#30674)
Getting the current cursor position involves writing a particular escape sequence to stdout and then reading/parsing the response.  In case the terminal doesn't support the sequence, we use `tcsetattr` to tell the terminal set set c_cc[MIN] to 0 and c_cc[VTIME] to 10; this makes it so that if no input is received within one second, we'll give up on reading the response.  If we didn't do this and no response came back, or if a faulty response came back such that we would otherwise just sit there waiting for something that would never come, the console could end up hanging until the user typed the expected sequence.

However, this timeout can cause problems when the terminal is separated by a slow network connection from the console logic, in which case the CPR can time out and the response can end up not only being echoed to the screen, but also interpreted as user input.

This change tracks whether we've ever received a successful CPR response. Until we have, it keeps using 0 for c_cc[MIN], i.e. the minimum number of chars we need to read, such that it relies on the timeout firing and we return when either we've read at least one byte or the timer fires.  Once we've successfully read a CPR response, for all future requests, we set c_cc[MIN] to 1.  With that, we'll still return once at least one byte is received, but the timer won't start until then, which helps avoid this issue with slow network connections.

Commit migrated from dd8449ded9
2018-06-29 13:19:55 -07:00
Steve Pfister
8756dddd17 Switched to as cast in Init because some caller do not have the file map at the start of the param list (refsrc System.Web) (dotnet/corefx#30548)
Commit migrated from 331f135dc4
2018-06-29 10:48:18 -07:00
Viktor Hofer
7201b57ec3 Regex: reduce allocation slightly, add tests, code cleanup, add parser comments (dotnet/corefx#30632)
* RegexParser & optionsstack ref

* Add test coverage for Group.Synchronized

* Adjust options mode test case

* Add inline comment '#' test branch

* Add comments

* Replace manual ToLower calls by Span.ToLower

* Make applicable fields readonly in parser

* Change to Assert to reduce an if check in one branch

* Code formatting

* Avoid string allocation when IgnoreCase set

Prefix patterns which are passed to RegexBoyerMoore are already
lowercased by the parser. Remove the redundant ToLower() call and assert
the patterns lowercase state

* Add surrogate pair positive & negative tests

* Add test cases for rtl anchor

Commit migrated from 2f259de0bc
2018-06-29 17:47:53 +02:00
Stephen Toub
4cfa3db255 Fix handle double-free in recently added WindowsIdentity test (dotnet/corefx#30731)
Commit migrated from e36eaec682
2018-06-28 19:38:29 -04:00
Maryam Ariyan
f00ab7c11d Fix compilation for deprecated API on macOS Mojave preview (dotnet/corefx#30716)
* Fix compilation for deprecated API on macOS Mojave preview

Fixes: dotnet/corefx#30599

* Fixing tests on macOS Mojave


Commit migrated from 5e46fe1592
2018-06-28 16:20:53 -07:00
Eric Erhardt
ce62cc1df7 Corefx Windows build on .NET Core MSBuild (dotnet/corefx#30675)
* Corefx Windows build on .NET Core MSBuild

Note:  Need to move to the 3.0 SDK because the DiaSymReader.Native shipped in .NET Core's shared framework is out of date.  See https://github.com/dotnet/core-setup/issues/4291.

* Workaround .NET Core MSBuild bug.

MSBuild on .NET Core doesn't support non-string resources. However, the ResourceManager tests need to test this scenario. Using the .NET Framework's resgen.exe during the build until the MSBuild bug is fixed.

* Update BuildTools to 2.2.0-preview1-02928-01


Commit migrated from 50ba6a21d8
2018-06-28 17:32:38 -05:00
Marco Rossignoli
7955437fe6 Override TextWriter.Write{Line}{Async} on StringWriter (dotnet/corefx#30667)
* add overloads

* fix overloads

* add tests

* move test to StringWriterTests.netcoreapp.cs

* revert StringWriterTests.cs updates

* address PR feedback

* fix test

* amend comments


Commit migrated from 57bb0fc7d6
2018-06-28 18:18:54 -04:00
Luqun Lou
862e09c609 Remove dependency for IBindableVector Type (dotnet/corefx#30710)
Commit migrated from 1ddcfb9eca
2018-06-28 13:07:54 -07:00
Luqun Lou
4b385c1124 Remove Is AppDomainUnloadedException check (dotnet/corefx#30736)
Commit migrated from 71bdfca061
2018-06-28 13:07:13 -07:00
Martin Baulig
76a4991a94 Move 'Internal.Cryptography.Pal.CertificateData' into its own file. (dotnet/corefx#30707)
This moves all the managed pieces of Internal/Cryptography/Pal.OSX/CertificatePal.cs
which are not platform-specific into a separate file to allow them to be used in Mono.

Commit migrated from a69961ae69
2018-06-28 12:28:24 -04:00
Atsushi Kanamori
c6fdf22f7a Bring back System.Reflection.ICustomTypeProvider (dotnet/corefx#30727)
Fix https://github.com/dotnet/corefx/issues/29958

Commit migrated from 66567f2181
2018-06-28 12:20:29 -04:00
Santiago Fernandez Madero
8278d08c7d Fix ImageFormat.ToString by using it's Guid when comparing to static ImageFormats (dotnet/corefx#30672)
* Fix ImageFormat.ToString by using it's Guid when comparing to static ImageFormats

* Add Image.RawFormat.ToString test

* Skip test on NETFX

* Address PR feedback


Commit migrated from aaaf87bbdd
2018-06-28 12:19:41 -04:00
Santiago Fernandez Madero
b74ff8c45b Fix FontFamily.Name performance by using span and calling the interop code with char pointer (dotnet/corefx#30705)
* Fix FontFamily.Name performance by using span and calling the interop
code with char pointer

* PR Feedback

* Remove added System.Memory reference


Commit migrated from 5d9a3ccdbd
2018-06-28 12:17:11 -04:00
Jiayi Yu
1d65627eb0 Add IsSerializerVersionMatch check (dotnet/corefx#30137)
* add IsSerializerVersionMatch check
* add eventsource for logging


Commit migrated from 1b270a4d56
2018-06-28 09:09:55 -07:00
Stephen Toub
d0fbcb7312 Merge pull request dotnet/corefx#30662 from dotnet-maestro-bot/master-UpdateDependencies
Update BuildTools, CoreClr, CoreFx, CoreSetup, ProjectNTfs, ProjectNTfsTestILC to preview1-02928-01, preview1-26628-01, preview1-26628-01, preview1-26627-03, beta-26627-00, beta-26627-00, respectively (master)

Commit migrated from 686eb156e2
2018-06-28 09:35:47 -04:00
Stephen Toub
06d112558e Disable Tizen leg on PRs (dotnet/corefx#30715)
It's failing with an updated coreclr:
https://github.com/dotnet/corefx/pull/30662#issuecomment-400695140

Commit migrated from 6315a412b5
2018-06-28 09:18:53 -04:00
Fei Peng
0aed54adc9 Fix Aes and Ssse3.Shuffle intrinsic APIs
Commit migrated from 89d9acd8f0
2018-06-28 08:13:46 -04:00
John Doe
f4b4b59a24 Typo (dotnet/corefx#30721)
* Abbrevation -> Abbreviation

* accesible -> accessible

* acordingly -> accordingly

* Acount -> Account

* Acroding -> According

* actaul -> actual

* Activty -> Activity

* actully -> actually

* Actvitiy -> Activity

* acutal -> actual


Commit migrated from f4ff3c8a7d
2018-06-28 04:49:55 -07:00
Gleb Balykov
d8c1f4cd3f Fix __Arch for armv7l tests (dotnet/corefx#30639)
Commit migrated from e36e0b3857
2018-06-27 23:12:24 -04:00
Luqun Lou
c056c1f775 Remove use of FrameworkEventSourceSupport from S.P.Corelib (dotnet/corefx#30297)
Commit migrated from 96eddf3953
2018-06-27 19:41:42 -07:00
dotnet-maestro-bot
34ec59ece5 Update BuildTools, CoreClr, CoreFx, CoreSetup, ProjectNTfs, ProjectNTfsTestILC to preview1-02928-01, preview1-26628-01, preview1-26628-01, preview1-26627-03, beta-26627-00, beta-26627-00, respectively
Commit migrated from 23bf4952b7
2018-06-27 18:56:08 -07:00
Afsaneh Rafighi
93f1441823 Merge pull request dotnet/corefx#29697 from AfsanehR/PoolBlockingPeriod
Added PoolBlockingPeriod connection property

Commit migrated from f487a4c84e
2018-06-27 09:58:44 -07:00
Jan Kotas
053f9dac18 Removes duplicate attributes on Span
Port https://github.com/dotnet/coreclr/pull/18668 to portable Span


Commit migrated from 7012adcffd
2018-06-27 09:05:33 -07:00
Afsaneh Rafighi
f3298c18b7 added a margin to test
Commit migrated from 880e4f031c
2018-06-27 08:46:00 -07:00
Tomas Weinfurt
06735f436e build stub assemblies on FreeBSD from *UnknownUnix* (dotnet/corefx#30663)
* build stub assemblies on FreeBSD from *UnknownUnix*

* feedback from review. move RegisterNetworkChange to common file

* use netcoreapp-Unix for FreeBSD until we have real implementation


Commit migrated from fc1574ecf3
2018-06-27 06:28:54 -07:00
Gleb Balykov
e12b7366eb Update Tizen CI RID (dotnet/corefx#30692)
* Update Tizen RID for CI

* Update Tizen url for rootfs generation


Commit migrated from cdb337284c
2018-06-27 08:07:20 -04:00
Santiago Fernandez Madero
c4e8681dd5 Disable DrawBezier/DrawLine_PointFs tests (dotnet/corefx#30684)
Commit migrated from a9aabd2b7c
2018-06-26 21:51:31 -04:00
Afsaneh Rafighi
ff18eca01a updated test
Commit migrated from 365505a837
2018-06-26 16:02:39 -07:00
Afsaneh Rafighi
b967dcfb6e Merge pull request dotnet/corefx#30342 from AfsanehR/AccessTokenAAD
Azure Active Directory Authentication using Access Token

Commit migrated from a74bf42009
2018-06-26 15:58:41 -07:00
Afsaneh Rafighi
19c6fc4720 Merge branch 'master' into AccessTokenAAD
Commit migrated from da34501f05
2018-06-26 12:54:34 -07:00
Tomas Weinfurt
d5f10c23ed add option to handle Ping TTL for raw socket and system utility (dotnet/corefx#30324)
* add option to handle TTL for raw socket and system utility

* add missing blank line

* incorporate feedback and merge with upstream

* feedback from review


Commit migrated from 3035218ef5
2018-06-26 11:00:00 -07:00
Afsaneh Rafighi
548328b5eb modified the test and addressed review comments
Commit migrated from 286eb8f789
2018-06-26 10:43:28 -07:00
Michal Strehovský
13142c814f Add regression test for dotnet/corertdotnet/corefx#6016 (dotnet/corefx#30664)
Commit migrated from 271c0832d9
2018-06-26 09:57:47 -04:00
Stephen Toub
4c9eb2ec25 Simplify built-in types across corefx tests (dotnet/corefx#30660)
Commit migrated from 7ae1a252d7
2018-06-25 22:42:04 -07:00
Stephen Toub
a3970182f6 Merge pull request dotnet/corefx#30570 from dotnet-maestro-bot/master-UpdateDependencies
Update BuildTools, CoreClr, CoreFx, CoreSetup, ProjectNTfs, ProjectNTfsTestILC to preview1-02921-01, preview1-26624-03, preview1-26624-03, preview1-26624-01, beta-26622-00, beta-26622-00, respectively (master)

Commit migrated from 14d17b207f
2018-06-25 23:55:07 -04:00
Stephen Toub
2fb9f847fc Simplify built-in types across corefx (dotnet/corefx#30656)
Commit migrated from e0ba7aa802
2018-06-25 16:54:41 -07:00
Wes Haggard
2dd5ef4b7c Remove netcorepp2.2 from package testing
Commit migrated from d77efb0302
2018-06-25 13:04:00 -07:00
Jan Kotas
bf2a2589e1 Fixes and workarounds for new CoreCLR
Commit migrated from 32646dfea2
2018-06-25 13:03:59 -07:00