| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix early join after start. | Jeroen van Rijn | 2025-06-21 | 1 | -20/+20 |
| | | |||||
| * | Add tests for `runtime.memory_*` comparison procedures | Feoramund | 2025-05-29 | 1 | -0/+76 |
| | | |||||
| * | cleanup test arenas | Laytan Laats | 2025-02-12 | 1 | -0/+1 |
| | | |||||
| * | fix wrong out of memory in edge cases, just try allocate from block for one ↵ | Laytan Laats | 2025-02-12 | 1 | -0/+14 |
| | | | | | source of truth | ||||
| * | Add `#+feature dynamic-literals` to tests | gingerBill | 2025-01-05 | 1 | -0/+1 |
| | | |||||
| * | also add a test for non power of 2 N for good measure | fleandro | 2025-01-03 | 1 | -0/+31 |
| | | |||||
| * | fix N=1 and cleanup tests | fleandro | 2025-01-03 | 1 | -20/+61 |
| | | |||||
| * | fix test leaks | fleandro | 2025-01-03 | 1 | -0/+1 |
| | | |||||
| * | runtime: map_cell_index_static produced wrong results when the number of ↵ | fleandro | 2025-01-03 | 1 | -1/+25 |
| | | | | | elements per cell was a power of 2 | ||||
| * | [runtime] `make(map[K]V)` should not allocate any capacity | Tetralux | 2024-11-16 | 1 | -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` | Feoramund | 2024-08-26 | 1 | -0/+3 |
| | | | | | Found by using `-sanitize:address`. | ||||
| * | Port `tests\core\runtime` | Jeroen van Rijn | 2024-06-02 | 1 | -38/+5 |
| | | |||||
| * | Replace `core:*` to `base:*` where appropriate | gingerBill | 2024-01-28 | 1 | -2/+2 |
| | | |||||
| * | add other failing test and fix them | Laytan Laats | 2023-12-18 | 1 | -1/+12 |
| | | |||||
| * | switch tests around | Laytan Laats | 2023-12-18 | 1 | -1/+1 |
| | | |||||
| * | add failing test for runtime arena edge case | Laytan Laats | 2023-12-18 | 1 | -0/+61 |