1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 11:37:04 +09:00

Initial pass on updating documentation to include MonoVM (#1863)

* Update documentation to cover also Mono runtime

* Updated requirements for mac and linux to include mono's

* Update System.Private.CoreLib/src/README.md

* Added initial mono building doc

* Added library testing steps for mono

* A bit of rewording based on feedback

* Add some scripts coloring
This commit is contained in:
Marek Safar 2020-01-20 16:50:07 +01:00 committed by Jan Kotas
parent cd622cd50c
commit 71a216a5ff
7 changed files with 151 additions and 59 deletions

View file

@ -0,0 +1,25 @@
# Running Tests using Mono Runtime
## Running Runtime Tests
The runtime tests will be available at a later date.
## Running Library Tests
Running library tests again mono is straightforward regardless of configuration. Simply run the following commands:
1. Build and set the TestRuntimeFlavor
```bash
./build.sh /p:TestRuntimeFlavor=mono
```
or on Windows
```bat
build.cmd /p:TestRuntimeFlavor=mono
```
2. cd into the test library of your choice (`cd src/libraries/<library>/tests`)
3. Run the tests
```
dotnet msbuild /t:BuildAndTest /p:TestRuntimeFlavor=mono
```