| 8 | |
| 9 | @Dragi: The ticket is about checking rasdaman/systemtest with any `queries` folders and add the prefix with increasing numbers if they don't exist, e.g: |
| 10 | |
| 11 | |
| 12 | {{{ |
| 13 | systemtest/testcases_mandatory/test_clipping/queries/cline_bothvertout.rasql |
| 14 | |
| 15 | -> |
| 16 | |
| 17 | systemtest/testcases_mandatory/test_clipping/queries/001-cline_bothvertout.rasql |
| 18 | }}} |
| 19 | |
| 20 | and this is more frustrating, check folder oracles of test cases without prefix numbers and see which oracles are expected error cases. Add ".error." before the file extension for the corresponding query in queries folder and oracle file in oracle folder, e.g: |
| 21 | |
| 22 | Open this file, it is an oracle with expected error from Rasql query, but there is no way to tell it is working query or non working query from its name: |
| 23 | |
| 24 | {{{ |
| 25 | |
| 26 | systemtest/testcases_mandatory/test_clipping/oracle/e_clinestr_rg_card1.oracle |
| 27 | |
| 28 | rename to (note the prefix increasing number) |
| 29 | |
| 30 | systemtest/testcases_mandatory/test_clipping/oracle/001-e_clinestr_rg_card1.error.oracle |
| 31 | |
| 32 | and |
| 33 | |
| 34 | |
| 35 | systemtest/testcases_mandatory/test_clipping/queries/001-e_clinestr_rg_card1.error.rasql |
| 36 | }}} |
| 37 | |