Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
35a79fc
[wasm] Reenable some skipped tests in System.Runtime.Extensions.Tests
Jul 8, 2020
5c905bf
[wasm] PathTests GetFullPath_CoreTests skip test case on browser
Jul 8, 2020
cad48bb
[wasm] System.Runtime.Extensions Tests throwing PNSE
Jul 9, 2020
f8b3c60
[wasm] System.Runtime.Extensions tests throwing Cannot wait on monito…
Jul 9, 2020
9e41643
[wasm] System.Runtime.Extensions tests with ActiveIssues
Jul 9, 2020
0558735
[wasm] System.Runtime.Extensions test throwing EntryPointNotFoundExce…
Jul 9, 2020
c05deb2
[wasm] AppDomainTests modify expected FriendlyName
Jul 9, 2020
b19d161
Add Environment.Browser to eliminate p-invokes that were not function…
Jul 10, 2020
f1a5975
Adjust ICU dependent tests
Jul 10, 2020
c128f6d
Remove browser skip on WorkingSet_Valid
Jul 10, 2020
9745d57
Feedback
Jul 10, 2020
ff310ff
Feedback PathTests.cs
Jul 10, 2020
4a223ed
[wasm] EnvironmentTests Assert Environment.Workinset equals 0
Jul 10, 2020
1038c09
[wasm] StringComparer Use IsNotInvariantGlobalization instead of IsIc…
Jul 10, 2020
bf0521e
Remove System.Runtime.Extensions from skip test list
Jul 10, 2020
b937af6
[wasm] Return emscripten for GetComputerName on Browser
Jul 10, 2020
53350a0
Add back in Environment.UnixOrBrowser
Jul 10, 2020
f625e66
Cleaned up a few comments
Jul 10, 2020
3a4ea9c
Merge branch 'master' into mdhwang/address_system_runtime_extensions_…
akoeplinger Jul 11, 2020
8d13b06
Merge branch 'master' into mdhwang/address_system_runtime_extensions_…
akoeplinger Jul 11, 2020
952997c
PR Feedback
Jul 12, 2020
c7343fa
One more thing...
Jul 13, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Cleaned up a few comments
  • Loading branch information
Steve Pfister committed Jul 10, 2020
commit f625e6601672100f6adc0a18b304995a29744bb5
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ public static partial class Environment
// Returning the value here allows us to exclude more of the runtime.
public static string MachineName => "emscripten";

// 3.2 provides no context, so return the same value.
// Matching what we returned for an earlier release. There isn't an established equivalent
// on wasm.
public static long WorkingSet => 0;

// 3.2 provides no context, so return the same value.
// Matching what we returned for an earlier release
public static string UserName => "web_user";
}
}