summary refs log tree commit diff stats
path: root/tests/async/tasyncfile.nim
Commit message (Expand)AuthorAgeFilesLines
* megatest can be executedArne Döring2018-12-111-2/+1
* require errormsg to be specified before file.Arne Döring2018-12-111-3/+2
* fixes #7347, asyncfile.getFileSize (#7354)andri lim2018-03-171-0/+11
* Fix AsyncFile open flags. Fixes #5531Ruslan Mustakov2018-02-171-2/+2
* Add an attempted reproduction for #5531.Dominik Picheta2017-11-261-0/+15
* getFileSize and setFileSize procedures for File and AsyncFileEmery Hemingway2017-04-051-2/+3
* `await x` where x is Fut var now reads after yield. Fixes #3964.Dominik Picheta2016-04-041-1/+1
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-3/+3
* Multiple exception idents in except for async. Ref #1487.Dominik Picheta2014-09-081-1/+1
* Implemented asyncfile for Posix.Dominik Picheta2014-09-051-5/+27
* Added Windows asyncfile implementation.Dominik Picheta2014-09-051-0/+14
nd-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
sudo: false
language: c
os:
  - linux
addons:
  apt:
    packages:
    - libcurl4-openssl-dev
    - libsdl1.2-dev
    - libgc-dev
before_script:
  - set -e
  - wget http://flatassembler.net/fasm-1.71.39.tgz
  - tar xvf fasm-1.71.39.tgz
  - git clone --depth 1 https://github.com/nim-lang/csources.git
  - cd csources
  - sh build.sh
  - cd ..
  - sed -i -e 's,cc = gcc,cc = clang,' config/nim.cfg
  - export PATH=$(pwd)/bin:$(pwd)/fasm:$PATH
script:
  - nim c koch
  - ./koch boot
  - ./koch boot -d:release
  - nim e install_nimble.nims
  - nimble update
  - nimble install zip
  - nimble install opengl
  - nimble install sdl1
  - nimble install jester
  - nimble install niminst
  - nim c --taintMode:on tests/testament/tester
  - tests/testament/tester --pedantic all
  - ./koch xz