summary refs log tree commit diff stats
path: root/tests/exception
Commit message (Expand)AuthorAgeFilesLines
* fixes more nil handling regressionsAraq2018-08-131-2/+2
* make tests green againAndreas Rumpf2018-07-051-2/+2
* Cpp codegen: handling of imported exceptions. Fixes #3571 (#7360)cooldome2018-04-101-0/+134
* fixes #7414 (#7434)cooldome2018-03-291-1/+21
* Allow only single infix as in except branches. Fixes #7115 (#7132)cooldome2018-03-081-0/+8
* make tests green againAraq2018-02-281-1/+0
* merged #6512 manually; fixes #6431Araq2018-02-271-0/+1
* genTryCpp to catch by Nim type, ready for first review (#7196)cooldome2018-02-123-0/+3
* nested finally bug (#7207)cooldome2018-02-121-1/+24
* Fix compiler crash on try expression with infix as (Fixes #7116) (#7112)cooldome2018-01-291-1/+9
* Remove expr/stmt (#5857)Arne Döring2017-07-251-2/+2
* make tests green againAraq2017-07-201-5/+2
* fixes #5871Andreas Rumpf2017-07-201-3/+14
* fixes #5628Araq2017-03-301-0/+29
* Fixes test.Dominik Picheta2017-02-061-1/+1
* Add template tests for #3691.Dominik Picheta2017-02-061-4/+5
* Fixes incorrect scoping in semstmts.semTry.Dominik Picheta2017-02-061-1/+0
* More progress towards a working #3691.Dominik Picheta2017-02-031-1/+16
* WIP: `as` with generics.Dominik Picheta2017-02-021-6/+6
* WIP implementation of `except ExcType as ident` syntax. Refs #3691.Dominik Picheta2017-02-011-0/+10
* Fixed getCurrentException and getCurrentExceptionMsg. Closes #4635Yuriy Glukhov2016-08-291-3/+3
* Fixed js codegen issue for uncaught exceptions.Yuriy Glukhov2016-08-271-3/+2
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-047-10/+10
* Fixed defer test.Yuriy Glukhov2015-08-071-0/+1
* destructors now work with overloaded assignment operators; fixes #2811; fixes...Araq2015-08-051-1/+25
* fixes #1888Araq2015-04-275-24/+24
* fixes #2476Araq2015-04-192-5/+5
* some love for the testsuite; fixed regressionsAraq2015-03-011-0/+18
* more tests greenAraq2014-08-315-18/+18
* Added test cases for return in except statements.Audun Wilhelmsen2014-02-232-0/+60
* Added tougher test case for return within finally statement.Audun Wilhelmsen2014-02-231-0/+40
* Fixed issue 391 (nested break in except-stmts)Audun Wilhelmsen2014-02-161-0/+45
* new tester; all tests categorizedAraq2014-01-1311-0/+304
ass="w"> "=== constructing initramfs out of SubX binary" ./ntranslate $* mv a.elf init chmod +x init rm -rf tmp/isoimage mkdir -p tmp/isoimage/boot echo init | cpio -R root:root -H newc -o | xz -9 --check=none > tmp/isoimage/boot/rootfs.xz if [ ! -d kernel ] then echo "=== cloning kernel" git clone https://github.com/akkartik/kernel fi echo "=== building kernel" ( cd kernel make bzImage -j $(grep ^processor /proc/cpuinfo | wc -l) ) cp kernel/arch/x86/boot/bzImage tmp/isoimage/boot/kernel.xz echo "=== downloading syslinux" test -f tmp/syslinux-6.03.tar.xz || wget https://kernel.org/pub/linux/utils/boot/syslinux/syslinux-6.03.tar.xz -P tmp echo "=== unpacking syslinux" tar xf tmp/syslinux-*.tar.xz -C tmp mkdir -p tmp/isoimage/boot/syslinux cp syslinux.cfg \ tmp/syslinux-*/bios/core/isolinux.bin \ tmp/syslinux-*/bios/com32/elflink/ldlinux/ldlinux.c32 \ tmp/isoimage/boot/syslinux echo "=== generating ISO" # 'hybrid' ISO can also be used on non-optical media such as a disk or USB stick xorriso -as mkisofs \ -isohybrid-mbr tmp/syslinux-*/bios/mbr/isohdpfx.bin \ -c boot/syslinux/boot.cat \ -b boot/syslinux/isolinux.bin \ -no-emul-boot \ -boot-load-size 4 \ -boot-info-table \ tmp/isoimage -o mu.iso