aboutsummaryrefslogtreecommitdiff
path: root/tests/issues/run.sh
Commit message (Collapse)AuthorAgeFilesLines
* Fix #2666 by checking for disabled when generating parapoly procsLaytan Laats2023-07-191-0/+1
|
* Fix #2637ramn2023-07-081-0/+1
| | | | where testing.expect_value can't compare nils
* add testLaytan Laats2023-07-021-0/+1
|
* [check-type] fix faulty #no_nil variants errorfinn2023-06-131-0/+7
| | | | | | | | | | | | | - when checking the variants of a union type we will skip adding the variants if we have an unspecialized polymorphic, hence our union_type variants will be empty and have a count of 0 - so when checking if we violate the #no_nil error, if we are in the unspecialized polymorphic case and there exists at least one variant in the original variants then we should not raise this error - test checks that we do not raise the error anymore, and that we still detect the #no_nil error in the described circumstances
* Add test for #2466J.C. Moyer2023-05-211-0/+1
|
* Add test for issue #2056J.C. Moyer2023-05-091-0/+1
|
* Github CI: Add test case for issue 2113Lucas Perlind2022-10-081-5/+8
|
* [strconv] Add parsing of Inf & NaNJeroen van Rijn2022-09-281-6/+4
|
* Update test paths.Jeroen van Rijn2022-04-261-8/+8
|
* Address edge cases.Jeroen van Rijn2022-04-261-9/+10
|
* Update tests to use new filename generation code.Jeroen van Rijn2022-04-241-10/+9
|
* Compiler: Allow -out: to not have an extension on *nix for executables (only).Jeroen van Rijn2022-04-241-2/+2
|
* Compiler: Add early error for output path being a directory.Jeroen van Rijn2022-04-241-2/+2
| | | | | | | | | | | | - Introduce new `Path` type and an array of build paths on the build context. - Resolve input and output paths/files early (before parsing). - Error early if inputs are missing or outputs are directories. - Plumb new file path generation into linker stage instead of its adhoc method. TODO: - Remove more adhoc file path generation in parser and linker stage. - Make intermediate object file generation use new path system. - Round out and robustify Path helper functions.
* -file for tests\issues.Jeroen van Rijn2022-04-051-2/+2
|
* Fix issue #829 "Compiler crashes when declaring maps with procedure"gitlost2022-03-231-0/+18
Inits `o->value` in `check_expr_base_internal()` so doesn't accidentally use last (the proc lit was being set to that of previous string) Adds test to "tests/issues" and changes CI to use new "run" shells