summary refs log tree commit diff stats
path: root/tests/misc
Commit message (Expand)AuthorAgeFilesLines
...
* | restrict casting for closure. (#5948); fixes #5742Parashurama2017-06-071-0/+23
|/
* another attempt to get travis greenAndreas Rumpf2017-03-291-13/+0
* Fixes to support Dragonfly BSD. (#5552)Eugene Kabanov2017-03-171-0/+2
* big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-5/+5
* make tests on Windows green under --pedanticAraq2017-02-021-4/+3
* make tests greenAraq2016-12-181-2/+2
* Added deques module, deprecating queuesRuslan Mustakov2016-11-241-4/+4
* fixed regressionsAndreas Rumpf2016-03-291-13/+13
* make tests green againAndreas Rumpf2016-02-291-1/+1
* use 'using' instead of 'sig' keyword; cleans up new features a bitAndreas Rumpf2016-02-291-0/+39
* Fix a few deprecation warningsdef2016-01-254-8/+0
* JS: Corrected shift operators. Made casting between ints behave like C does.Yuriy Glukhov2016-01-221-6/+33
* Unsigned arith corrected for JSYuriy Glukhov2016-01-211-10/+24
* Closes: #3611Federico Ceratto2015-12-021-0/+12
* Merge branch 'mget' of https://github.com/def-/Nim into def--mgetAraq2015-10-131-2/+1
|\
| * Rename mget to `[]`def2015-03-311-5/+4
* | add tfile/tline assertions for template expansion file/lineAman Gupta2015-10-061-5/+2
* | minor testsuite cleanupAraq2015-09-101-1/+1
* | tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-0441-355/+355
* | renamed writeln to writeLine in testspatrick dw2015-06-197-148/+148
* | Non-base10 overflow allowed if bit-stable. Tests.Oscar Campbell2015-06-121-0/+68
* | s/procedure/routine/ in tests.Dominik Picheta2015-06-052-2/+2
* | Fixes #2584Dominik Picheta2015-06-042-2/+2
* | fixes #2550Araq2015-04-221-0/+14
* | fixes #2427Araq2015-04-061-0/+14
|/
* doc updates; fixes 'inc' for 'char'Araq2015-03-294-102/+10
* Use `^` instead of `-` in slicesdef2015-03-281-3/+3
* codegen doesn't produce line tracing commands anymore; fixes #1344Araq2015-03-211-0/+43
* Fix tests some moredef2015-03-172-2/+2
* fixes --gc:none regression; made some tests greenAraq2015-03-102-5/+4
* add parser combinator test; uses multiple tuples/generics featuresMax Zerzouri2015-03-072-0/+160
* proper 'space in dir' testAraq2015-01-271-3/+0
* cleaned up unsigned testsAraq2015-01-272-24/+20
* Add filename space testVarriount2015-01-171-0/+3
* fixes the integer conversion regressionsAraq2015-01-131-3/+0
* Merge pull request #1841 from skyfex/develAndreas Rumpf2015-01-122-0/+186
|\
| * Added safe implicit conversion of uint8 to int16..int64, uint16 to int32..int...Audun Wilhelmsen2015-01-032-0/+186
* | fix #544Zahary Karadjov2015-01-021-11/+11
* | use unix line endingsZahary Karadjov2015-01-021-43/+43
|/
* fixes #1788Araq2014-12-301-0/+4
* fixes #1708, fixes #871Araq2014-12-282-4/+6
* fixes #1638Araq2014-12-172-4/+16
* fixes #916Araq2014-11-201-2/+11
* make tests greenAraq2014-08-319-49/+45
* prettified re.nim; make some tests greenAraq2014-08-314-16/+16
* further adaptationsAraq2014-08-294-6/+6
* fixes #1334Araq2014-08-191-1/+8
* fixes #1420Araq2014-08-191-0/+15
* Fixes #710.Dominik Picheta2014-08-161-0/+10
* fixes #1434Araq2014-08-141-2/+1
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882