-
Notifications
You must be signed in to change notification settings - Fork 0
Round-trip Testing #187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Nikil-Shyamsunder
wants to merge
20
commits into
main
Choose a base branch
from
roundtrip-test-turnt
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Round-trip Testing #187
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
b6a4906
integrate with turnt
Nikil-Shyamsunder 6d5fbe1
make roundtrip a separate job
Nikil-Shyamsunder 6b03d04
Use `uv run` instead of `python3` when invoking round-tripping script"
ngernest bff8547
add docstrings
Nikil-Shyamsunder 841b5e6
add trace outputs for both failing and passing cases, remove ci skip
Nikil-Shyamsunder 766cb0d
updated roundtrip case
Nikil-Shyamsunder 3144053
make the .rt file formatting prettier
Nikil-Shyamsunder 358df9c
modify python script to have prettier .rt outputs
Nikil-Shyamsunder f996b8f
debug: add --diff flag due to divergence in .rt results between ci ma…
Nikil-Shyamsunder 68a5a2e
normalize panic outputs
Nikil-Shyamsunder 1ec0679
[skip ci] Add TODO for Ernest
ngernest 0a778f7
Merge remote-tracking branch 'origin/main' into roundtrip-test-turnt
ngernest d947ec2
Add extra CLI flag to round-trip testing script to keep intermediate …
ngernest bd12199
Merge remote-tracking branch 'origin/main' into roundtrip-test-turnt
ngernest 5c7b979
Add allowed-to-fail CLI flag to round-tripping script
ngernest ef6e46e
Rename CLI flag to --allow-round-trip-failure, mark all tests with re…
ngernest 48fab65
Bunch of fixes to allow individual tests to be skipped from round-tri…
ngernest 2a4a1a4
Formatting
ngernest aa039ed
Only print name of fst file if user explicitly specifies it
ngernest 374eced
Update another .rt file
ngernest File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| pcpi_mul_reset(); | ||
| pcpi_mul(1, 1, 1); | ||
| pcpi_mul(1, 100, 100); | ||
| pcpi_mul(100, 1, 100); | ||
| pcpi_mul(33554483, 200, 2415929304); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| pcpi_mul_reset(); | ||
| pcpi_mul(1, 1, 1); | ||
| pcpi_mul(1, 100, 100); | ||
| pcpi_mul(100, 1, 100); | ||
| pcpi_mul(33554483, 200, 2415929304); | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| read_write(0, 0, 0, 0, 1, 5, 3735928559); | ||
| read_write(5, 3735928559, 0, 0, 0, 0, 0); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| read_write(0, 0, 0, 0, 1, 5, 3735928559); | ||
| read_write(5, 3735928559, 0, 0, 0, 0, 0); | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| aes128(5233100606242806050955395731361295, 88962710306127702866241727433142015, 140591190147677442632770771134392354138); | ||
| aes128(0, 0, 136792598789324718765670228683992083246); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| aes128(5233100606242806050955395731361295, 88962710306127702866241727433142015, 140591190147677442632770771134392354138); | ||
| aes128(0, 0, 136792598789324718765670228683992083246); | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,7 @@ | ||
| [envs.interp] | ||
| command = "cargo run --package protocols-interp -- --color never --transactions {filename} {args}" | ||
|
|
||
| [envs.roundtrip] | ||
| command = "uv run ../scripts/roundtrip_case.py {filename} {args}" | ||
| binary = true | ||
| output.rt = "-" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| trace_block: 0 | ||
| trace_result: FAIL | ||
| failure_kind: monitor_error | ||
| interpreter_trace: | ||
| trace { | ||
| add_combinational(100, 200, 300); | ||
| } | ||
|
|
||
| monitor_error: | ||
| Transaction `add_combinational_illegal_observation_in_conditional`, cycle 0: Unable to find value for b (symbol5) in args_mapping, which is { (symbol4) a: 100 | ||
| (symbol6) s: 300 } | ||
| note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
1 change: 1 addition & 0 deletions
1
protocols/tests/adders/adder_d0/illegal_observation_assertion.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
1 change: 1 addition & 0 deletions
1
protocols/tests/adders/adder_d0/illegal_observation_conditional.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TODO for Ernest: check why the monitor is failing here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| trace_block: 0 | ||
| trace_result: FAIL | ||
| failure_kind: monitor_error | ||
| interpreter_trace: | ||
| trace { | ||
| add(1, 2, 3); | ||
| add(4, 5, 9); | ||
| } | ||
|
|
||
| monitor_error: | ||
| All schedulers failed: No transactions match the waveform for DUT `Adder` | ||
| Failure at cycle 1: No transactions match the waveform in `.roundtrip_tmp/adders-adder_d1-both_threads_pass_0.fst`. | ||
| Possible transactions: [add, add_fork_early, add_doesnt_end_in_step, add_incorrect, add_incorrect_implicit, wait_and_add] | ||
| Error: Monitor failed | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: allowed to fail round trip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: allowed to fail round trip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: allowed to fail round trip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: allowed to fail round trip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TODO for Ernest: check why monitor is failing here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| trace_block: 0 | ||
| trace_result: FAIL | ||
| failure_kind: monitor_error | ||
| interpreter_trace: | ||
| trace { | ||
| wait_and_add(1, 2, 3); | ||
| add(4, 5, 9); | ||
| } | ||
|
|
||
| monitor_error: | ||
| All schedulers failed: No transactions match the waveform for DUT `Adder` | ||
| Failure at cycle 1: No transactions match the waveform in `.roundtrip_tmp/adders-adder_d1-wait_and_add_correct_0.fst`. | ||
| Possible transactions: [add, add_fork_early, add_doesnt_end_in_step, add_incorrect, add_incorrect_implicit, wait_and_add] | ||
| Error: Monitor failed | ||
|
|
1 change: 1 addition & 0 deletions
1
protocols/tests/adders/adder_d1/wait_and_add_incorrect_implicit.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| add(1, 2, 3); | ||
| add(4, 5, 9); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| add(1, 2, 3); | ||
| add(4, 5, 9); | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| add(1, 2, 3); | ||
| add(123, 245, 368); | ||
| sub(200, 200, 0); | ||
| and(100, 100, 100); | ||
| or(0, 230, 230); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| add(1, 2, 3); | ||
| add(123, 245, 368); | ||
| sub(200, 200, 0); | ||
| and(100, 100, 100); | ||
| or(0, 230, 230); | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| add(1, 2, 3); | ||
| add(123, 245, 368); | ||
| sub(200, 200, 0); | ||
| and(100, 100, 100); | ||
| or(0, 230, 230); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| add(1, 2, 3); | ||
| add(123, 245, 368); | ||
| sub(200, 200, 0); | ||
| and(100, 100, 100); | ||
| or(0, 230, 230); | ||
| } | ||
|
|
1 change: 1 addition & 0 deletions
1
protocols/tests/brave_new_world/bit_truncation/bit_truncation_fft_bug.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
14 changes: 14 additions & 0 deletions
14
protocols/tests/brave_new_world/bit_truncation/bit_truncation_fft_fix.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| bit_truncation_fft(8386560, 2047); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| bit_truncation_fft(8386560, 2047); | ||
| } | ||
|
|
1 change: 1 addition & 0 deletions
1
protocols/tests/brave_new_world/bit_truncation/bit_truncation_sha_bug.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
14 changes: 14 additions & 0 deletions
14
protocols/tests/brave_new_world/bit_truncation/bit_truncation_sha_fix.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| bit_truncation_sha(4398046511104, 68719476736); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| bit_truncation_sha(4398046511104, 68719476736); | ||
| } | ||
|
|
1 change: 1 addition & 0 deletions
1
protocols/tests/brave_new_world/failure_to_update/ftu_sha_bug.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
14 changes: 14 additions & 0 deletions
14
protocols/tests/brave_new_world/failure_to_update/ftu_sha_fix.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| failure_to_update_sha(); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| failure_to_update_sha(); | ||
| } | ||
|
|
1 change: 1 addition & 0 deletions
1
protocols/tests/brave_new_world/signal_asynchrony/signal_async_bug.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
14 changes: 14 additions & 0 deletions
14
protocols/tests/brave_new_world/signal_asynchrony/signal_async_fix.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| signal_async(6, 7); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| signal_async(6, 7); | ||
| } | ||
|
|
1 change: 1 addition & 0 deletions
1
protocols/tests/brave_new_world/use_without_valid/use_without_valid_bug.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SKIP: non-zero // RETURN |
14 changes: 14 additions & 0 deletions
14
protocols/tests/brave_new_world/use_without_valid/use_without_valid_fix.rt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| use_without_valid(5, 5); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| use_without_valid(5, 5); | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| trace_block: 0 | ||
| trace_result: PASS | ||
| matched_monitor_trace_index: 0 | ||
| interpreter_trace: | ||
| trace { | ||
| count_up(10); | ||
| } | ||
|
|
||
| parsed_monitor_trace_candidates: | ||
| candidate_monitor_trace: 0 | ||
| trace { | ||
| count_up(10); | ||
| } | ||
|
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO for Ernest: investigate this (
bought to be defined)