Commit f4c05f7
Fix UseXdp parameter type in test.ps1 (switch -> string)
test.ps1 declared -UseXdp as [switch] with a string default of "", which
fails PowerShell argument transformation on every invocation that does not
pass -UseXdp, and mis-binds -UseXdp <version> as a positional argument when
it does (landing on -IsolationMode). UseXdp carries an XDP version string
(e.g. 'xdp-v1.1'), so declare it as [string] to match its usage and the
other scripts (prepare-machine.ps1, spin.ps1, recvfuzz.ps1).
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent f8113a8 commit f4c05f7
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
185 | 185 | | |
186 | 186 | | |
187 | 187 | | |
188 | | - | |
| 188 | + | |
189 | 189 | | |
190 | 190 | | |
191 | 191 | | |
| |||
0 commit comments