aboutsummaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* | core/crypto/ripemd: Remove, historical/exoticYawning Angel2023-11-172-107/+0
| |
* | core/crypto/md4: Remove, badly brokenYawning Angel2023-11-172-42/+0
| |
* | core/crypto/md2: Remove, badly brokenYawning Angel2023-11-171-21/+0
| |
* | core/crypto/jh: Remove, use SHA-3Yawning Angel2023-11-171-61/+0
| |
* | core/crypto/haval: Remove, badly brokenYawning Angel2023-11-171-171/+0
| |
* | core/crypto/groestl: Remove, use SHA-3Yawning Angel2023-11-171-61/+0
| |
* | core/crypto/gost: Remove, exoticYawning Angel2023-11-172-44/+0
| |
* | core/crypto/blake: Remove, use BLAKE2b/BLAKE2sYawning Angel2023-11-171-61/+0
| |
* | core/crypto/sha2: Add SHA-512/256Yawning Angel2023-11-171-0/+16
|/
* Fix net.split_urlJeroen van Rijn2023-11-091-0/+5
| | | | Resolves issue #2924
* Delete test artifact.Jeroen van Rijn2023-11-041-0/+0
|
* Work around LLVM idiocy.Jeroen van Rijn2023-11-042-3/+9
|
* Add math.pow2_f{16,32,64}, fast floating point 2^x where x is an integer.Jeroen van Rijn2023-11-043-3/+74
|
* Temporarily disable RTTI test on Windows.Jeroen van Rijn2023-10-312-2/+2
|
* Add test for RTTIJeroen van Rijn2023-10-303-8/+113
|
* testing: add test for `Out_Of_Memory` returnRickard Andersson2023-10-021-0/+44
|
* Make core:net test os.exit(1) on failure.Jeroen van Rijn2023-09-301-0/+5
|
* Allow any order of query strings in net.join_url tests.Jeroen van Rijn2023-09-301-24/+98
|
* Change large math/big test literals to hex.Jeroen van Rijn2023-09-302-5/+6
| | | | | | | | In September 2022, the Python team addressed a possible DoS issue converting big integers to and from base 10 strings: https://github.com/python/cpython/issues/95778 Converting to/from base 10 is a quadratic operation, so they limited it to 4300 digits: https://discuss.python.org/t/int-str-conversions-broken-in-latest-python-bugfix-releases/18889/83 Github CI still uses an old Python version which parsed our test suite just fine. This patch converts them to hex literals to ensure our test doesn't break when Github does update to a non-vulnerable Python version released after September 2022.
* Add test for utf8 multibyte stringsAbdelrahman Farid2023-09-191-0/+8
|
* use KiB etc. instead of KBLaytan Laats2023-09-121-14/+14
|
* fix test caseLaytan Laats2023-09-011-1/+1
|
* actually run the testLaytan Laats2023-09-011-1/+2
|
* Add formatting of bytes into the best unit of measurementLaytan Laats2023-09-012-0/+62
|
* Merge pull request #2669 from laytan/check-disabled-when-generating-parapolydev-2023-08gingerBill2023-08-013-0/+28
|\ | | | | Fix #2666 by checking for disabled when generating parapoly procs
| * Fix #2666 by checking for disabled when generating parapoly procsLaytan Laats2023-07-193-0/+28
| |
* | Keep `-vet` happy by removing `using`gingerBill2023-07-315-143/+99
| |
* | Keep -vet happygingerBill2023-07-312-18/+15
| |
* | Remove `using` where easily possiblegingerBill2023-07-315-26/+21
| |
* | Fix #2684Jeroen van Rijn2023-07-281-16/+18
|/
* Fix #2637ramn2023-07-083-0/+15
| | | | where testing.expect_value can't compare nils
* add testLaytan Laats2023-07-023-0/+21
|
* Fix tests for `-strict-style`gingerBill2023-06-261-2/+2
|
* Merge pull request #2582 from ftphikari/mastergingerBill2023-06-211-2/+2
|\ | | | | [core:thread] Added self_cleanup flag to properly auto-clean threads
| * [core:thread] Added `self_cleanup` flag to properly auto-clean threadshikari2023-06-071-2/+2
| |
* | [check-type] fix faulty #no_nil variants errorfinn2023-06-132-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* | Merge pull request #2552 from jcmoyer/fix-2466gingerBill2023-06-083-0/+24
|\ \ | |/ |/| Use compound literal storage for ValueDecl lvals
| * Add test for #2466J.C. Moyer2023-05-213-0/+24
| |
* | Document core:math/rand and add 'possible output'Lucas Perlind2023-05-311-18/+32
| | | | | | | | | | | | Possible output allows us to just type check a test and have some sort of output field in the docs but not actually verify it matches stdout
* | Add missing commagingerBill2023-05-291-1/+1
| |
* | fix #2550 json encoding should use surrogate pairs per RFC7159Laytan Laats2023-05-221-1/+15
|/
* Merge pull request #2523 from jcmoyer/fix-2056gingerBill2023-05-183-0/+24
|\ | | | | Zero non-diagonal elements when converting to matrix
| * Add test for issue #2056J.C. Moyer2023-05-093-0/+24
| |
* | Merge pull request #2541 from laytan/add-hex-and-expand-percent-decodingJeroen van Rijn2023-05-151-0/+93
|\ \ | | | | | | fix hex.encode and add tests for the package
| * | fix hex.encode and add tests for the packageLaytan Laats2023-05-151-0/+93
| |/
* | Add test for net.split_urlYoshihiro Tanaka2023-05-141-9/+49
| |
* | Join URL queries with &Yoshihiro Tanaka2023-05-141-1/+35
|/
* Windows requires the botan-3 naming due to the new releasezhibog2023-05-031-0/+0
|
* Add Botan 3.0, comment some tests, due to removed algorithmszhibog2023-05-032-5/+5
|
* Merge pull request #2445 from Lperlind/documentation/strings_returnsJeroen van Rijn2023-04-082-13/+27
|\ | | | | Document return values of strings and add allocator errors where possible