summary refs log tree commit diff stats
path: root/tests/manyloc
Commit message (Collapse)AuthorAgeFilesLines
* replace getOpt with getopt (#22515)Nan Xiao2023-08-196-6/+6
|
* Markdown code blocks migration part 8 (#22478)Andrey Makarov2023-08-151-2/+2
|
* fixes #19863; move sha1, md5 to nimble packages for 2.0 (#21702)ringabout2023-05-027-8/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * move sha1, md5 to nimble packages * boot the compiler * fixes tests * build the documentation * fixes docs * lol, I forgot koch.nim * add `nimHasChecksums` define * clone checksums but maybe copying is better * bump nimble hash * use ChecksumsStableCommit * fixes tests * deprecate them * fixes paths * fixes koch
* defaults to ORC (#19972)ringabout2022-09-232-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * defaults to Orc * bootstrap using refc * use gc * init orc defines * unregister orc * fix gc * fix commands * add prepareMutation for orc * enable deepcopy for orc * prepareMutation * more fixes * some cases * bug #20081 * partial fixes * partial fixes * fixes command line * more fixes * build Nim with refc * use gc * more fixes * rstore * orc doesn't support threadpool * more shallowCopy * more fixes * fixes unsafeNew * workarounds * small * more fixes * fixes some megatest * tcodegenbugs1 refc * fxies megatest * build nimble with refc * workaround tensordsl tests * replace shallowCopy with move * fixes action * workaround * add todo * fixes important packages * unpublic unregisterArcOrc * fixes cpp * enable windows Co-authored-by: xflywind <43030857+xflywind@users.noreply.github.com>
* default threads on (#19368)flywind2022-07-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * default threads on * make rst gcsafe * ignore threads option for nimscript * threads off * use createShared for threads * test without threads * avr threds off * avr threads off * async threads off * threads off * fix ci * restore option * make CI pleased * fix ic tests * Update config.nims * add changelog * Update changelog.md Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
* style usages part one (openarray => openArray) (#19321)flywind2022-01-042-2/+2
| | | | | * style usages (openArray) * revert doc changes
* fix #17952: fix both false positives and false negatives for reInvalidSpec ↵Timothee Cour2021-05-082-25/+26
| | | | | | | | | (#17956) * fix #17952: fix both false positives and false negatives for reInvalidSpec * handle megatest properly * fix for tests/stdlib/tbase64.nim
* use lowercase --define switches (#17283)flywind2021-03-072-3/+3
|
* `--nilseqs` is now a deprecated noop (#17211)Timothee Cour2021-03-011-1/+0
| | | | | * --nilseqs is now a deprecated noop * fix tests; fix: future => sugar
* remove tests/deps/ (#17132)Timothee Cour2021-02-231-5/+10
| | | | | | | | | * remove tests/deps/ * fix tests * fix tests/manyloc/keineschweine/lib/zlib_helpers.nim * fixup
* addQuitProc => addExitProc (#16765)Timothee Cour2021-01-222-2/+8
|
* Deprecate TaintedString (#15423)Juan Carlos2021-01-152-4/+4
| | | | Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> Co-authored-by: Dominik Picheta <dominikpicheta@googlemail.com>
* make --gc:arc --exceptions:quirky work again [backport:1.4] (#16583)Andreas Rumpf2021-01-044-5/+25
| | | | | * make --gc:arc --exceptions:quirky work again [backport:1.4] * fixes #16404 [backport:1.4]
* fixed article duplication typos (#16216)ihlec2020-12-021-1/+1
|
* remove a condition that table size must be passed as power of 2 (#14926)Miran2020-07-081-2/+1
| | | | | | | | | | | | | | | * remove a condition that table size must be passed as power of 2 * remove power-of-2 condition from sets and sharedtables * remove power-of-2 condition from deques * use 'correctSize' for both branches * prettify changelog.md and fix typos * add a changelog entry * fix double-call of 'right-size' * fix the same thing in sets.nim * introduce a new internal proc `slotsNeeded` Deprecate the public proc `rightSize`, which is not needed anymore. Now it is an identity function, allowing the old code to work correctly and without extra allocations.
* deprecate existsDir; use dirExists instead (#14884)Timothee Cour2020-07-033-3/+3
|
* {.deprecated: [existsFile: fileExists].} (#14735)Timothee Cour2020-07-028-11/+11
| | | | | | | | | * {.deprecated: [existsFile: fileExists].} * s/existsFile/fileExists/ except under deps * workaround pending #14819 * fix test
* Remove deprecated stuff from stdlib (#14699)Miran2020-06-173-4/+4
| | | | | | | * update to the latest Jester * remove deprecated procs from some stdlib modules * 'criterion' is not maintained anymore and relies on obsolete stuff
* Remove the uses of {.procvar.} pragma (#14359)Kaushal Modi2020-05-152-5/+5
| | | | | | | This pragma did nothing. Ref: - https://github.com/nim-lang/Nim/issues/2172#issuecomment-383276469 - https://github.com/nim-lang/Nim/issues/12975
* Error -> Defect for defects (#13908)Jacek Sieka2020-04-281-2/+2
| | | | | | | | | | | | | | * Error -> Defect for defects The distinction between Error and Defect is subjective, context-dependent and somewhat arbitrary, so when looking at an exception, it's hard to guess what it is - this happens often when looking at a `raises` list _without_ opening the corresponding definition and digging through layers of inheritance. With the help of a little consistency in naming, it's at least possible to start disentangling the two error types and the standard lib can set a good example here.
* fix deprecations and other warnings (#13748)Miran2020-03-251-2/+2
|
* remove deprecated procs (#12535)Andreas Rumpf2019-11-054-7/+7
|
* Make sequtils.zip return seq of anonymous tuples (#12575)Kaushal Modi2019-11-041-1/+1
| | | | | | | | | | * Make sequtils.zip return seq of anonymous tuples Earlier the tuples had named fields "a" and "b" and that made it difficult to assign the zip returned seqs to other vars which expected seqs of tuples with field names other than "a" and "b". * Make sequtils.zip backwards compatible with Nim 1.0.x
* introduce csize_t instead of fixing csize (#12497)Arne Döring2019-10-312-41/+38
|
* fix several typos in documentation and comments (#12553)Nindaleth2019-10-301-1/+1
|
* Revert "Fixes #12187 (#12321)" (#12447)Andreas Rumpf2019-10-181-1/+1
| | | This reverts commit 00c31e87660d9db813871f5aa23661bf6b9bbdcb.
* Fixes #12187 (#12321)Clyybber2019-10-081-1/+1
| | | | | | * Fixes #12187 * Point to fork of compactdict Since the original repo is now archived / read-only
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-272-5/+5
|
* Fixed #9762 (#11296)Yuriy Glukhov2019-05-291-0/+3
|
* cleanup keineschweine test; removes unused moduleAraq2019-05-241-295/+0
|
* move assertions and iterators out of system.nim (#10597)Miran2019-03-071-4/+0
| | | | | * move assertions and iterators out of system.nim * limit nimsuggest tests to the first 3 suggestions
* Remove deprecated modules (asyncio, sockets, ftpclient) (#10401)Miran2019-01-221-1/+1
|
* Remove long deprecated stuff (#10332)Miran2019-01-181-2/+3
|
* better docs: sequtilsnarimiran2019-01-161-1/+1
|
* remove deprecated modules (#10215)Miran2019-01-073-3/+3
| | | | | | | | | | | | | | | | | | * removed from `compiler`: * lists (deprecated 2 years ago) * removed from `lib` (all deprecated 3 years ago): * ssl * matchers * httpserver * removed from `lib/deprecated`: * unsigned * actors (and three accompanying tests) * parseurl * moved to `lib/deprecated`: * securehash (the reason for not directly removing - it was deprecated (only) one year ago)
* Dead code elimination for entire modules and their init procs if empty (#10032)cooldome2018-12-301-1/+5
| | | | | | * fixes #9798 * Change order of write modules * Move datInit calls ahead of initStackBottom
* make tests green; better output for when megatest execution failsAraq2018-12-114-4/+4
|
* lots of small changesArne Döring2018-12-1116-16/+16
|
* removes deprecated T/P typesAraq2018-11-167-25/+25
|
* make nake test compile againAraq2018-08-221-1/+1
|
* even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-222-1/+2
|
* make more tests greenAndreas Rumpf2018-08-133-9/+9
|
* make tests green againAndreas Rumpf2018-07-054-8/+12
|
* make tests green againAndreas Rumpf2018-05-028-86/+86
|
* make tests green againAraq2018-04-301-1/+1
|
* make more tests greenAndreas Rumpf2018-04-303-4/+4
|
* make tests green againAndreas Rumpf2018-04-281-6/+6
|
* remove dead code elimination option (#7669)Jacek Sieka2018-04-2311-11/+6
|
* make more tests greenAraq2018-02-101-1/+1
|
* Remove expr/stmt (#5857)Arne Döring2017-07-251-2/+3
|