summary refs log tree commit diff stats
path: root/tests/objects
Commit message (Collapse)AuthorAgeFilesLines
* threw away a silly testAraq2018-11-231-61/+0
|
* activated more tests, allow input in test specArne Döring2018-11-231-0/+9
|
* make run the default action of a test in testerArne Döring2018-11-232-1/+8
|
* More descriptive names of test files (#9531)Miran2018-10-292-0/+0
| | | | | * change generic `tissues` name to more specific * change `tvarious` to more specific names
* Merge tests into a larger file (part 5 of ∞) (#9368)Miran2018-10-1611-223/+204
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * merge magics * merge metatype tests * merge method tests * merge objects tests * change `import future` to `import sugar` Nim in Action tests are left with `import future`, to ensure compatibility. * merge overload tests * merge proc tests * merge procvar tests * merge range tests * merge seq tests * merge sets tests * remove wrong assert from `tsets3` * fix `jsTests` * better fix
* make tests green againAndreas Rumpf2018-07-052-3/+3
|
* make tests green againAndreas Rumpf2018-07-052-5/+5
|
* fixes #7637; assignments are not allowed to slice object; minor breaking changeAndreas Rumpf2018-04-213-13/+34
|
* avoid creating temporary in genObjConstr if possible (#7032)jcosborn2018-01-112-1/+13
|
* Improved collection-to-string behavior (#6825)Fabian Keller2017-12-141-10/+10
|
* fixes #6294Araq2017-09-051-1/+37
|
* Fix typo (#6236)Daniil Yarancev2017-08-121-1/+1
|
* Remove expr/stmt (#5857)Arne Döring2017-07-251-1/+1
|
* fixes #5892Araq2017-07-171-0/+19
|
* fixes #4763Araq2017-07-171-0/+32
|
* fixes #4673Andreas Rumpf2016-09-011-0/+13
|
* make test green again (code was wrong, but not detected by compiler)Andreas Rumpf2016-04-301-1/+1
|
* fixes regression: tobjconstr2 test works againAraq2015-10-141-1/+1
|
* fix test failure due to "illegal recursion" error messageAman Gupta2015-10-011-1/+1
| | | | | | | | | | FAIL: tillegal_recursion.nim Test "tests/objects/tillegal_recursion.nim" in category "objects" Failure: reMsgsDiffer Expected: illegal recursion in type 'object' Gotten: inheritance only works with non-final objects
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-047-17/+17
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* fixes #3038Araq2015-07-031-0/+28
|
* renamed writeln to writeLine in testspatrick dw2015-06-192-13/+13
|
* fixes #1658Araq2015-04-111-0/+15
|
* fixes #1691Araq2015-04-111-0/+7
|
* fixes #2509Araq2015-04-111-0/+19
|
* fixes #1791Araq2015-03-121-13/+13
|
* some love for the testsuite; fixed regressionsAraq2015-03-011-0/+3
|
* cleanup index generationAraq2015-02-101-0/+27
|
* fixes #837Araq2014-11-212-6/+34
|
* fixes #1053, fixes #924Araq2014-11-191-0/+55
|
* fixes #1274Araq2014-11-181-0/+16
|
* further adaptationsAraq2014-08-291-1/+1
|
* fixes #1275Araq2014-07-011-0/+12
|
* Added support for {.packed.} pragma on objectsAudun Wilhelmsen2014-03-181-0/+49
| | | | Added tests for packed and union pragmas
* next steps for closure iteratorsAraq2014-01-229-0/+280
|
* new tester; all tests categorizedAraq2014-01-131-0/+52
n654' href='#n654'>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 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955