Skip to content

Commit 9065498

Browse files
committed
Add quotes
1 parent 82d75d6 commit 9065498

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/development.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ workshops workshops
253253
$ git config --add oh-my-zsh.hide-dirty 1
254254
```
255255
256-
- Some shells (e.g., [Zsh][zsh]) may require quotes around environment variables to prevent the shell from expanding paths. If this is the case, wrap paths in quotes. For example, replace
256+
- Some shells (e.g., [Zsh][zsh]) may require quotes around environment variables to prevent the shell from expanding paths. If this is the case, wrap paths, or values which may be interpreted as paths, in quotes. For example, replace
257257
258258
<!-- run-disable -->
259259
@@ -289,15 +289,15 @@ To run select tests,
289289
<!-- run-disable -->
290290
291291
```bash
292-
$ make TESTS_FILTER=.*/<pattern>/.* test
292+
$ make TESTS_FILTER=".*/<pattern>/.*" test
293293
```
294294
295295
where `<pattern>` is a pattern matching a particular path. For example, to test only base special math functions
296296
297297
<!-- run-disable -->
298298
299299
```bash
300-
$ make TESTS_FILTER=.*/math/base/special/.* test
300+
$ make TESTS_FILTER=".*/math/base/special/.*" test
301301
```
302302
303303
where the pattern `.*/math/base/special/.*` matches any test file whose absolute path contains `math/base/special`.
@@ -307,7 +307,7 @@ To generate a test coverage report,
307307
<!-- run-disable -->
308308
309309
```bash
310-
$ make TESTS_FILTER=.*/<pattern>/.* test-cov
310+
$ make TESTS_FILTER=".*/<pattern>/.*" test-cov
311311
$ make view-cov
312312
```
313313
@@ -316,8 +316,8 @@ If you are developing a tool (i.e., code located in the `tools` directory), to r
316316
<!-- run-disable -->
317317
318318
```bash
319-
$ make TESTS_FILTER=.*/<pattern>/.* tools-test
320-
$ make TESTS_FILTER=.*/<pattern>/.* tools-test-cov
319+
$ make TESTS_FILTER=".*/<pattern>/.*" tools-test
320+
$ make TESTS_FILTER=".*/<pattern>/.*" tools-test-cov
321321
$ make view-cov
322322
```
323323
@@ -326,15 +326,15 @@ Similarly, to run benchmarks
326326
<!-- run-disable -->
327327
328328
```bash
329-
$ make BENCHMARKS_FILTER=.*/<pattern>/.* benchmark
329+
$ make BENCHMARKS_FILTER=".*/<pattern>/.*" benchmark
330330
```
331331
332332
and examples
333333
334334
<!-- run-disable -->
335335
336336
```bash
337-
$ make EXAMPLES_FILTER=.*/<pattern>/.* examples
337+
$ make EXAMPLES_FILTER=".*/<pattern>/.*" examples
338338
```
339339
340340
## Contributing

0 commit comments

Comments
 (0)