aboutsummaryrefslogtreecommitdiff
path: root/tests/core/runtime
Commit message (Collapse)AuthorAgeFilesLines
* Fix early join after start.Jeroen van Rijn2025-06-211-20/+20
|
* Add tests for `runtime.memory_*` comparison proceduresFeoramund2025-05-291-0/+76
|
* cleanup test arenasLaytan Laats2025-02-121-0/+1
|
* fix wrong out of memory in edge cases, just try allocate from block for one ↵Laytan Laats2025-02-121-0/+14
| | | | source of truth
* Add `#+feature dynamic-literals` to testsgingerBill2025-01-051-0/+1
|
* also add a test for non power of 2 N for good measurefleandro2025-01-031-0/+31
|
* fix N=1 and cleanup testsfleandro2025-01-031-20/+61
|
* fix test leaksfleandro2025-01-031-0/+1
|
* runtime: map_cell_index_static produced wrong results when the number of ↵fleandro2025-01-031-1/+25
| | | | elements per cell was a power of 2
* [runtime] `make(map[K]V)` should not allocate any capacityTetralux2024-11-161-0/+24
| | | | | | | `make(map[K]V)` was resolving to `make_map_cap()` which allocates initial capacity when it wasn't intended to. It now calls `make_map()` which doesn't allocate any capacity. Both `make(map[K]V)` and `make(map[K]V, allocator)` will NOT allocate initial capacity now.
* Free the arenas allocated in `test_core_runtime`Feoramund2024-08-261-0/+3
| | | | Found by using `-sanitize:address`.
* Port `tests\core\runtime`Jeroen van Rijn2024-06-021-38/+5
|
* Replace `core:*` to `base:*` where appropriategingerBill2024-01-281-2/+2
|
* add other failing test and fix themLaytan Laats2023-12-181-1/+12
|
* switch tests aroundLaytan Laats2023-12-181-1/+1
|
* add failing test for runtime arena edge caseLaytan Laats2023-12-181-0/+61