Skip to content

Commit dfb654b

Browse files
Update live-unit-testing.md
fixed casing in .lutignore samples.
1 parent 2e32976 commit dfb654b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/test/live-unit-testing.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,23 +71,23 @@ For more complex repositories, you might need to specify your own ignore file. S
7171
The *lutignore* file uses the same format as a *gitignore* file. It should contain rules that match the folders or files generated during the build so that they're not copied into the workspace. For most of the default project templates, the following ignore file is sufficient:
7272

7373
```
74-
[BB]IN
75-
[OO]BJ
74+
[Bb]in
75+
[Oo]bj
7676
# WILL NOT COPY ANY BIN AND OBJ FOLDERS TO THE LIVE UNIT TESTING WORKSPACE
7777
```
7878

7979
If your repository has a single build folder, the ignore file should list that folder instead:
8080

8181
```
82-
[AA]RTIFACTS/
82+
[Aa]rtifacts/
8383
# WILL NOT COPY THE ARTIFACTS FOLDER TO THE LIVE UNIT TESTING WORKSPACE
8484
```
8585

8686
If your repository includes some other tools in the build folder, these tools should be excluded in the set of matching patterns:
8787

8888
```
89-
[AA]RTIFACTS/
90-
![AA]RTIFACTS/TOOLS/
89+
[Aa]rtifacts/
90+
![Aa]rtifacts/tools/
9191
# WILL NOT COPY THE ARTIFACTS FOLDER TO THE LIVE UNIT TESTING WORKSPACE
9292
# HOWEVER IT WILL COPY THE TOOLS SUBFOLDER THAT MIGHT CONTAIN TOOLS AND UTILITIES
9393
```

0 commit comments

Comments
 (0)