summary refs log tree commit diff stats
path: root/tests/threads
Commit message (Collapse)AuthorAgeFilesLines
* fixes #10795Andreas Rumpf2019-03-061-5/+18
|
* remove deprecated modules (#10215)Miran2019-01-073-58/+0
| | | | | | | | | | | | | | | | | | * 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)
* lots of small changesArne Döring2018-12-111-1/+1
|
* require errormsg to be specified before file.Arne Döring2018-12-112-5/+2
|
* make tests green againAraq2018-11-161-1/+1
|
* Remove install.txt and readme.txt (#9521)Utwo2018-10-281-2/+2
| | | | | | | | * Remove install.txt and readme.txt * Refactor tests that use readme.txt * Tests open own source code
* Fixes 8535 (#8591)LemonBoy2018-08-171-0/+16
| | | | | | | | | | | | | | | | | | | * Goodbye postInitProc * Give preInitProc its own scope Avoid any conflict between the variables introduced by preInitProc and initProc since both are codegen'd in the same function body. * Fix codegen for global var init in emulated TLS Fixes #8535 * Add test for #8535 * Keep a bogus stack frame around * Remove more dead code
* fixes more nil handling regressionsAraq2018-08-131-2/+2
|
* fixes channels for --gc:regionsAndreas Rumpf2018-05-251-2/+2
|
* Support thread-local variables declared inside procs; fixes #7565Zahary Karadjov2018-05-071-0/+78
|
* the parser finally parses 'echo {1,2}' as it shouldAndreas Rumpf2017-09-302-2/+2
|
* Fixes #4719. (#5585)Eugene Kabanov2017-03-232-0/+58
|
* Update testament to include all tests from tests/threads category. (#5576)Eugene Kabanov2017-03-203-0/+3
|
* removed onThreadCreation; onThreadDestruction is now thread localAraq2017-02-261-7/+4
|
* added a testcase for getThreadIdAraq2017-01-311-0/+5
|
* added test case; threadex example crashes nowAraq2017-01-301-0/+25
|
* onThreadDestruction feature added to Nim's threading modelAndreas Rumpf2017-01-241-1/+6
|
* added system.onThreadCreation feature for safe thread local storage ↵Andreas Rumpf2017-01-181-0/+22
| | | | initializations
* moved random procs from math to its own module (breaking change)Andreas Rumpf2016-05-301-1/+1
|
* Consistently use Channel instead of TChanneldef2016-02-252-3/+3
|
* Fix a few deprecation warningsdef2016-01-255-5/+5
|
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-046-8/+8
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* fixes #1816Araq2015-01-021-0/+35
|
* further adaptationsAraq2014-08-293-3/+3
|
* renamed babelcmd to nimblecmd; config files are now nim.cfg; other renamingsAraq2014-08-291-0/+0
|
* asynchttpserver compiles again; made some tests greenAraq2014-08-132-4/+4
|
* removed flawed thread analysis passAraq2014-04-202-54/+3
|
* Tester now appreciates the test target. Modified 'cmd' in specs.Dominik Picheta2014-04-164-4/+4
|
* made some tests greenAraq2014-03-271-1/+3
|
* fix #931 and few more testsZahary Karadjov2014-02-181-0/+1
|
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-164-0/+0
|
* added tactors2 testAraq2012-09-211-0/+25
|
* fixes #71; sorry about the polling implementationAraq2011-12-051-0/+19
|
* fixes 70Araq2011-12-041-4/+4
|
* deprecated endOfFile and readLineAraq2011-11-251-4/+4
|
* fixed bug that kept tls emulation from workingAraq2011-11-251-16/+15
|
* bugfix: 'when' sections in generic objects now work, so TThread[void] compilesAraq2011-11-201-1/+1
|
* tester: threading tests addedAraq2011-11-193-2/+59
|
* bugfix: fixed memory leaks in osproc moduleAraq2011-11-183-2/+18
|
* locks now in their own core moduleAraq2011-08-202-6/+0
|
* first steps to explicit channels for thread communication; added mainThreadIdAraq2011-07-161-5/+3
|
* preparations for 0.8.12Araq2011-07-104-0/+167
d='n369' href='#n369'>369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521