Commit 1325cec
committed
WIP: feat:
TODO: Move from current incorrect flow to:
```
not_running_test -|test_start|-> running_test
* TEST-START | <test_path>
running_test -|test_end_with_ok_or_crash|-> not_running_test
* TEST-OK | <test_path> | took <duration>ms
* TEST-CRASH | <test_path> | took <duration>ms
* TEST-KNOWN-INTERMITTENT-CRASH | <test_path> | took <duration>ms
running_test -|test_end_with_unexpected_crash|-> ending_test
* TEST-UNEXPECTED-CRASH | <test_path> | took <duration>ms
* TEST-UNEXPECTED-CRASH | <test_path> | expected <outcome>
TEST-INFO expected <outcome> | took <duration>ms
ending_test -|subtest_unexpected|-> not_running_test
* TEST-UNEXPECTED-PASS | <test_path> | <subtest> | expected <outcome>
TEST-INFO | expected <outcome>
* TEST-UNEXPECTED-FAIL | <test_path> | <subtest> - <msg>
running_test -|subtest_pass_or_fail|-> running_test
# N.B., a trailing space!
* TEST-PASS | <test_path> | <subtest>
* TEST-FAIL | <test_path> | <subtest> - <msg>
# Timeouts
running_test -|subtest_timeout|-> ending_test_with_timeout
ending_test_with_timeout -|subtest_notrun|-> ending_test_with_timeout
* TEST-UNEXPECTED-NOTRUN | <test_path | <subtest> - expected PASS
* TEST-UNEXPECTED-NOTRUN | <test_path | <subtest> - expected FAIL
TEST-INFO | expected FAIL
* TEST-KNOWN-INTERMITTENT-NOTRUN | <test_path> | <subtest>
* TEST-UNEXPECTED-NOTRUN | <test_path> | <subtest> [msg]
ending_test_with_timeout -|test_end_with_expected_timeout|-> not_running_test
* TEST-TIMEOUT | <test_path> | took <duration>ms
ending_test_with_timeout -|test_end_with_unexpected_timeout|-> not_running_test
* TEST-UNEXPECTED-TIMEOUT | <test_path> | took <duration>ms
TEST-INFO took <duration>ms
```
TEST-UNEXPECTEDaggregate-timings-from-log subcmd.1 parent 590f342 commit 1325cec
6 files changed
Lines changed: 1720 additions & 2 deletions
File tree
- moz-webgpu-cts
- src
- aggregate_timings_from_logs
- wpt
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
21 | 22 | | |
| 23 | + | |
22 | 24 | | |
23 | 25 | | |
24 | 26 | | |
| |||
0 commit comments