aboutsummaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | Add vendor-specific version 8 UUID generation (hashing)Feoramund2024-06-221-0/+14
| | | |
| | * | Test if v1 and v6 UUID `node` is set correctlyFeoramund2024-06-221-6/+20
| | | |
| | * | Add `uuid` test for timestampsFeoramund2024-06-221-0/+48
| | | |
| | * | Add UUID sorting testsFeoramund2024-06-221-0/+125
| | | |
| | * | Fix indentationFeoramund2024-06-221-94/+94
| | | |
| | * | Add buffer-based `to_string` to `uuid` packageFeoramund2024-06-221-3/+8
| | | |
| | * | Improve time-related API in `uuid` packageFeoramund2024-06-221-51/+50
| | | | | | | | | | | | | | | | | | | | | | | | - Let timestamps be specified by the user. - Change `time_v*` to `raw_time_v*` and implement an API that returns timestamps from the `time` package.
| | * | Require CSPRNG in UUID generation where applicableFeoramund2024-06-221-0/+9
| | | |
| | * | Move v3 and v5 UUID procs to `uuid/legacy`Feoramund2024-06-221-5/+6
| | | |
| | * | Add version 6 UUID generationFeoramund2024-06-221-0/+31
| | | |
| | * | Add version 1 UUID generationFeoramund2024-06-221-0/+31
| | | |
| | * | Add version 7 UUID generationFeoramund2024-06-221-1/+31
| | | |
| | * | Make UUID `Identfier` only a distinct byte arrayFeoramund2024-06-221-2/+2
| | | |
| | * | Add `core:encoding/uuid`Feoramund2024-06-222-0/+119
| | |/
| * / Fix core:math/fixed.Jeroen van Rijn2024-06-261-0/+51
| |/
| * Merge pull request #3137 from laytan/show-defineablegingerBill2024-06-201-1/+1
| |\ | | | | | | Add flags to show/export defineable values and warn if a -define is unused in the project
| | * remove caught unused defineLaytan Laats2024-06-071-1/+1
| | |
| * | Measure `East_Asian_Width` during grapheme decodingFeoramund2024-06-191-2/+64
| | |
| * | Separate the I18N calls for immutable strings and for pluraliseable strings.Maurizio M. Gavioli2024-06-191-19/+21
| | | | | | | | | | | | Also update tests.
| * | Merge pull request #3767 from Feoramund/use-rng-context-in-test-runnerJeroen van Rijn2024-06-197-38/+52
| |\ \ | | | | | | | | Setup `context.random_generator` in test runner
| | * | Keep `-vet` happyFeoramund2024-06-151-1/+1
| | | |
| | * | Add tests for `core:math/rand`Feoramund2024-06-152-0/+36
| | | |
| | * | Use test's random generatorFeoramund2024-06-155-38/+16
| | | | | | | | | | | | | | | | | | | | This removes the `create` calls when a test was only setting up a generator, and it replaces them with `reset` when run in a loop.
| * | | Fix removal of temporary file in `core:flags` testFeoramund2024-06-181-8/+7
| | | |
| * | | Add missing imports to `core` test suiteFeoramund2024-06-181-0/+2
| | | |
| * | | Merge pull request #3700 from Feoramund/core-flagsgingerBill2024-06-181-0/+1394
| |\ \ \ | | | | | | | | | | Add package `core:flags`
| | * | | Raise error on spaced UNIX-style flag with no valueFeoramund2024-06-151-0/+17
| | | | |
| | * | | Add `--` parsing to UNIX-style `core:flags`Feoramund2024-06-141-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | This will allow a user to indicate all arguments after `--` are parsed into the variadic array.
| | * | | Add package `core:flags`Feoramund2024-06-071-0/+1350
| | | |/ | | |/|
| * | | Add tests for `decode_grapheme_clusters`Feoramund2024-06-172-0/+4985
| | | |
| * | | Add tests for `slice.unique` and `slice.unique_proc`Jeroen van Rijn2024-06-161-1/+61
| | |/ | |/|
| * | Merge pull request #3764 from Feoramund/test-runner-fixesgingerBill2024-06-151-1/+2
| |\ \ | | | | | | | | Fix half-implemented features in the test runner
| | * | Prefer `log.error` over `fail_now` in this caseFeoramund2024-06-151-1/+2
| | | |
| * | | Remove dead variablegingerBill2024-06-152-2/+0
| | | |
| * | | Fix `rand` in container testsgingerBill2024-06-152-7/+9
| | | |
| * | | Update `core:math/rand` to use `context.random_generator` and remove `rand.Rand`gingerBill2024-06-153-27/+50
| |/ /
* | | Merge remote-tracking branch 'upstream/master' into sys-windows-2Thomas la Cour2024-06-133-5/+141
|\| |
| * | Add test for `%w`Feoramund2024-06-121-0/+114
| | |
| * | Fold XML attribute whitespace.Jeroen van Rijn2024-06-122-0/+22
| | |
| * | Update XML reader to normalize whitespace, part 1.Jeroen van Rijn2024-06-121-5/+5
| | |
* | | win32genThomas la Cour2024-06-116-7/+1181
| | |
* | | windows bindings testThomas la Cour2024-06-115-0/+933
|/ /
* | Forbid all BSDs from running `core:net` testsFeoramund2024-06-111-1/+1
| | | | | | | | `net` is not yet implemented on them.
* | Add test for `core:math/big` permutation & combination procsFeoramund2024-06-091-0/+37
| |
* | Rename `math/big` test packageFeoramund2024-06-091-1/+1
| | | | | | | | | | This is in line with the other tests, and it does not seem to affect building the library.
* | Add test for `slice.permute`Feoramund2024-06-091-1/+31
| |
* | Clean up PNG code.Jeroen van Rijn2024-06-091-1/+0
| |
* | Merge branch 'master' into png_cleanupJeroen van Rijn2024-06-092-0/+42
|\ \
| * \ Merge branch 'master' into tlsf-allocatorJeroen van Rijn2024-06-0931-485/+942
| |\ \
| * | | Add `core:mem` tests.Jeroen van Rijn2024-06-062-0/+9
| | | |