Skip to content

Commit ca149a2

Browse files
authored
Merge pull request #7569 from standby24x7/tests-typo
Fix typos in tests
2 parents 885851a + cbb44b2 commit ca149a2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Makefile in tests/device/ directory handles compiling, uploading, and executing
124124
125125
Here are some of the supported targets:
126126
127-
- `virtualenv`: prepares Python virtual environment inside tests/device/libaries/BSTest/virtualenv/. This has to be run once on each computer where tests are to be run. This target will use `pip` to install several Python libraries required by the test runner (see tests/device/libaries/BSTest/requirements.txt).
127+
- `virtualenv`: prepares Python virtual environment inside tests/device/libraries/BSTest/virtualenv/. This has to be run once on each computer where tests are to be run. This target will use `pip` to install several Python libraries required by the test runner (see tests/device/libraries/BSTest/requirements.txt).
128128
129129
- `test_xxx/test_xxx.ino`: compiles, uploads, and runs the tests defined in `test_xxx/test_xxx.ino` sketch. Some extra options are available, these can be passed as additional arguments to `make`:
130130
- `NO_BUILD=1`: don't compile the test.

tests/host/README.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Sketch emulation on host
1111

1212
This environment let compile esp8266/Arduino sketches into native
1313
environment. Network (tcp, udp, including ssl and multicast) is linked to
14-
local host interfaces. WiFi is trivialy emulated and reported as "just"
14+
local host interfaces. WiFi is trivially emulated and reported as "just"
1515
already connected and usable.
1616

1717
Currently network emulation is a complete rewrite of
@@ -24,7 +24,7 @@ stdin is connected to UART0(RX) and stdout is connected to UART0(TX).
2424
UART1(TX) writes to stderr. Reading from stdin happens in non-blocking
2525
raw mode, that means each character is directly injected into the UART
2626
FIFO without any buffering in the console. The command line switch -c
27-
can be used to stop the emulation from intersepting CTRL-C (SIGINT).
27+
can be used to stop the emulation from intercepting CTRL-C (SIGINT).
2828

2929
How to compile and run a sketch
3030
-------------------------------
@@ -102,7 +102,7 @@ Make fun, propose PRs.
102102
- SDCARD on Host filesystem ? or in an image ?
103103
- nice curses interface to display/change gpios ?
104104
- display device emulation (like ssd1306)
105-
- optionaly use arduino-builder ?
105+
- optionally use arduino-builder ?
106106
- store sketch objects and binaries outside from the source directories (done for sketches)
107107
- compile and use lwIP on host
108108
- easily debug HTTP classes

tests/platformio.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function build_sketches_with_platformio()
3939
local sketchdirname=$(basename $sketchdir)
4040
local sketchname=$(basename $sketch)
4141
if [[ "${sketchdirname}.ino" != "$sketchname" ]]; then
42-
echo "Skipping $sketch, beacause it is not the main sketch file";
42+
echo "Skipping $sketch, because it is not the main sketch file";
4343
continue
4444
fi;
4545
if [[ -f "$sketchdir/.test.skip" ]]; then

0 commit comments

Comments
 (0)