summaryrefslogtreecommitdiff
path: root/BUILDING.md
diff options
context:
space:
mode:
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/BUILDING.md b/BUILDING.md
index e66aa314d3..a3ddd42fd9 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -342,12 +342,17 @@ the `--help` option:
$ tools/test.py --help
```
+> Note: On Windows you should use `python3` executable.
+> Example: `python3 tools/test.py test/message`
+
You can usually run tests directly with node:
```text
-$ ./node ./test/parallel/test-stream2-transform.js
+$ ./node test/parallel/test-stream2-transform.js
```
+> Info: `./node` points to your local Node.js build.
+
Remember to recompile with `make -j4` in between test runs if you change code in
the `lib` or `src` directories.