diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-01-23 22:21:24 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-01-26 10:47:56 +0100 |
commit | 04fa2baba6d615c49cf3f77986595da2a7783899 (patch) | |
tree | a346cc4d4fd630797dcc91aeb35f2d7bdf44233b /tests/custom/03_bugs/03_switch_fallthrough_miscompilation | |
parent | abe38e7e390cc17e6eae0ebe94d2006c548e095c (diff) |
tests: reorganize testcase files
- Rename 03_bugs to 04_bugs
- Rename 26_invalid_sparse_array_set to 27_invalid_sparse_array_set
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'tests/custom/03_bugs/03_switch_fallthrough_miscompilation')
-rw-r--r-- | tests/custom/03_bugs/03_switch_fallthrough_miscompilation | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/custom/03_bugs/03_switch_fallthrough_miscompilation b/tests/custom/03_bugs/03_switch_fallthrough_miscompilation deleted file mode 100644 index 3e6410e..0000000 --- a/tests/custom/03_bugs/03_switch_fallthrough_miscompilation +++ /dev/null @@ -1,16 +0,0 @@ -When falling through from a matched switch case into the default case, -the compiler incorrectly emitted bytecode that led to an endless loop. - --- Expect stdout -- -1 --- End -- - --- Testcase -- -{% - switch (1) { - case 1: - default: - print("1\n"); - } -%} --- End -- |