You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: e2e/CLAUDE.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ Each YAML file has a top-level `tests` key containing a list of test cases:
25
25
```yaml
26
26
tests:
27
27
- name: "test case name"
28
+
arch: [amd64, arm64]
28
29
requests:
29
30
- input:
30
31
runtime: node
@@ -56,6 +57,19 @@ tests:
56
57
error: ""
57
58
```
58
59
60
+
### Architecture Filter
61
+
62
+
The optional `arch` field restricts a test case to specific CPU architectures. When omitted, the test runs on all architectures. When specified, the test runs only on the listed architectures (matched against Go's `runtime.GOARCH`).
63
+
64
+
```yaml
65
+
tests:
66
+
- name: "amd64-only syscall test"
67
+
arch: [amd64]
68
+
requests:
69
+
- input:
70
+
# ...
71
+
```
72
+
59
73
### File Types
60
74
61
75
- `raw` (default): File content is provided inline via the `content` field.
0 commit comments