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

Updated mono testing doc #44360

Merged
merged 23 commits into from
Nov 20, 2020
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
51241f1
Update testing.md
fanyang-mono Nov 6, 2020
5afb1da
Create testing-mono.md
fanyang-mono Nov 6, 2020
6a6d421
Update mono testing doc
fanyang-mono Nov 6, 2020
5ebf8af
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
8f38660
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
4dcfce5
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
94d1c90
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
5d0fd91
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
0c664e8
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
031a857
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
4309c23
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
ae3b8bb
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 11, 2020
c538bd2
PR feedback
fanyang-mono Nov 11, 2020
bdf7016
Fix format
fanyang-mono Nov 13, 2020
e5a377e
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 17, 2020
270a938
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 17, 2020
cecd564
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 17, 2020
3b24c94
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 17, 2020
121e5c3
PR feedback
fanyang-mono Nov 17, 2020
bb6844e
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 20, 2020
0bc668a
Update docs/workflow/testing/mono/testing.md
fanyang-mono Nov 20, 2020
3c6e23f
Replace bullet points with sub-headers
fanyang-mono Nov 20, 2020
6d1918c
Update sub-headers to remove the duplicated part
fanyang-mono Nov 20, 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
Replace bullet points with sub-headers
  • Loading branch information
fanyang-mono committed Nov 20, 2020
commit 3c6e23f4f6f2c2f0407ad8086307f00b8ae84da5
12 changes: 8 additions & 4 deletions docs/workflow/testing/mono/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,26 +78,30 @@ Build and run library tests against Webassembly, Android or iOS. See instruction
# Running the Mono samples
fanyang-mono marked this conversation as resolved.
Show resolved Hide resolved
There are a few convenient samples located in `$(REPO_ROOT)/src/mono/netcore/sample`, which could help you test your program easily with different flavors of Mono or do a sanity check on the build. The samples are set up to work with a specific configuration; please refer to the relevant Makefile for specifics. If you would like to work with a different configuration, you can edit the Makefile.

* To run the desktop Mono sample, cd to `HelloWorld` and execute:
## Running the sample for desktop Mono
To run the desktop Mono sample, cd to `HelloWorld` and execute:

```
make run
```
Note that the default configuration of this sample is LLVM JIT.

* To run the WebAssembly sample, cd to `wasm`. There are two sub-folders `browser` and `console`. One is set up to run the progam in browser, the other is set up to run the program in console. Enter the desirable sub-folder and execute
## Running the WebAssembly sample
To run the WebAssembly sample, cd to `wasm`. There are two sub-folders `browser` and `console`. One is set up to run the progam in browser, the other is set up to run the program in console. Enter the desirable sub-folder and execute

```
make build && make run
```

* To run the Android sample, cd to `Android` and execute
## Running the Android sample
To run the Android sample, cd to `Android` and execute

```
make run
```

* To run the iOS sample, cd to `iOS` and execute
## Running the iOS sample
To run the iOS sample, cd to `iOS` and execute

```
make run
Expand Down