Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wip ignore #3

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f3d7fb3
[wasm][debugger] Move DevToolsQueue to a separate file
radical Nov 5, 2020
61d78de
Move Inspector to separate file, mv Support.cs=>DebuggerTest.cs
radical Nov 5, 2020
aa5eb6f
[wasm][debugger][tests] Some improvements to DevToolsQueue
radical Nov 19, 2020
a9c2315
[wasm][debugger] Check Proxy's client_initiated_close early
radical Nov 19, 2020
d9753dc
[wasm][debugger][tests] Inspector - handle event being received befor…
radical Nov 19, 2020
da7954e
[wasm][debugger][tests] Refactor test harness to support simpler test…
radical Nov 20, 2020
92c712f
[wasm][debugger][tests] Port some tests to the simpler test harness bits
radical Nov 20, 2020
eaccc48
[wasm][debugger][tests] Fix race in ExceptionThrownInJSOutOfBand test
radical Nov 20, 2020
fe09e68
[wasm][debugger] Formatting fixes on the changes
radical Nov 20, 2020
83a497c
Remove unncessary AssertHelpers.ThrowsAsync
radical Nov 23, 2020
ac2a158
[wasm][debugger][tests] Fix a race when sending messages
radical Nov 23, 2020
7e4b43f
[wasm][debugger][tests] Move all the tests to `SingleSessionTestBase`
radical Nov 20, 2020
ae1268f
[wasm][debugger][tests] Run `dotnet format` on the test files
radical Nov 20, 2020
f2dee9c
[wasm][debugger][tests] Merge SingleSessionTestBase=>DebuggerTestBase
radical Nov 20, 2020
6c1b719
[wasm][debugger][tests] Remove DebugTestContext
radical Nov 20, 2020
de5f2f2
[wasm][debugger][tests] Remove unused insp.Ready method
radical Nov 20, 2020
e883446
[wasm][debugger][tests] Improve console logging output
radical Nov 24, 2020
e51f5b6
[wasm][debugger][tests] Add testId to the logger names
radical Nov 24, 2020
454ac4d
use browser session stuff
radical Nov 25, 2020
1be8fb3
tests are running
radical Nov 25, 2020
d0540a5
Bp works!
radical Nov 26, 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
1 change: 1 addition & 0 deletions eng/Configurations.props
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
<PropertyGroup Label="CalculateOS">
<_runtimeOS>$(RuntimeOS)</_runtimeOS>

<__DistroRid>osx-x64</__DistroRid>
<_parseDistroRid>$(__DistroRid)</_parseDistroRid>
<_parseDistroRid Condition="'$(_parseDistroRid)' == ''">$([System.Runtime.InteropServices.RuntimeInformation]::RuntimeIdentifier)</_parseDistroRid>
<_distroRidIndex>$(_parseDistroRid.LastIndexOfAny("-"))</_distroRidIndex>
Expand Down
8 changes: 8 additions & 0 deletions eng/testing/WasmRunnerTemplate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ if [ -z "$XHARNESS_COMMAND" ]; then
XHARNESS_COMMAND="test"
fi

DEBUG_PROXY_PROJ=$HOME/dev/runtime/src/mono/wasm/debugger/BrowserDebugHost/BrowserDebugHost.csproj
DEBUG_PROXY_PORT=9300
BROWSER_DEBUG_PORT=9222
XHARNESS_ARGS="$XHARNESS_ARGS --debug-port=$BROWSER_DEBUG_PORT"

dotnet run -p $DEBUG_PROXY_PROJ $BROWSER_DEBUG_PORT $DEBUG_PROXY_PORT &
echo $?

# RunCommands defined in tests.mobile.targets
[[RunCommands]]

Expand Down
2 changes: 1 addition & 1 deletion eng/testing/tests.mobile.targets
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<PropertyGroup Condition="'$(TargetOS)' == 'Browser'">
<!-- We need to set this in order to get extensibility on xunit category traits and other arguments we pass down to xunit via MSBuild properties -->
<RunScriptCommand>$HARNESS_RUNNER wasm $XHARNESS_COMMAND --app=. --engine=$(JSEngine) $(JSEngineArgs) --js-file=runtime.js --output-directory=$XHARNESS_OUT -- $(RunTestsJSArguments) --run WasmTestRunner.dll $(AssemblyName).dll</RunScriptCommand>
<RunScriptCommand>$HARNESS_RUNNER wasm $XHARNESS_COMMAND --app=. --engine=$(JSEngine) $(JSEngineArgs) --js-file=runtime.js --output-directory=$XHARNESS_OUT $XHARNESS_ARGS -- $(RunTestsJSArguments) --run WasmTestRunner.dll $(AssemblyName).dll</RunScriptCommand>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetOS)' == 'Android'">
Expand Down
Loading