For some of the builtins we have conformance tests with names like case-1, case-2, ... case-9, case-10, case-11, .... This is annoying because sometimes they get listed and/or processed in alphanumeric order, not numeric order: case-1, case-11, case-12, case-2, case-3, ... . This PR renames all of the files to have two-digit numbers, so we get things in the right order: case-01, case-02, ..., case-09, case-10, case-11, ... . This is tedious but it should makes things easier in future. I also tried to make the naming more consistent in general.
For some of the builtins we have conformance tests with names like
case-1
,case-2
, ...case-9
,case-10
,case-11
, .... This is annoying because sometimes they get listed and/or processed in alphanumeric order, not numeric order:case-1
,case-11
,case-12
,case-2
,case-3
, ... . This PR renames all of the files to have two-digit numbers, so we get things in the right order:case-01
,case-02
, ...,case-09
,case-10
,case-11
, ... . This is tedious but it should makes things easier in future. I also tried to make the naming more consistent in general.