summary refs log tree commit diff stats
path: root/tests/errmsgs/tdont_show_system.nim
Commit message (Expand)AuthorAgeFilesLines
* improve the 'has to be discarded' error messageAraq2020-05-021-1/+1
* compiler: better error messages (#5613)Andreas Rumpf2017-03-261-1/+1
* fixes #4308, fixes #4905Araq2016-12-181-0/+13
amp;id=cd1113882450382ebe39db7dd8690812bac1aba7'>^
52ea3102 ^
875b6ba8 ^








0fa9ccd1 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
         




                                                   
      
 








                                                                     
                                          
#!/bin/sh
# Run tests for just a subset of layers.
#
# Usage:
#   build_and_test_until [file prefix] [test name]
# Provide the second arg to run just a single test.
set -e

# clean previous builds if they were building until a different layer
touch .until
PREV_UNTIL=`cat .until`
if [ "$PREV_UNTIL" != $1 ]
then
  ./clean top-level
  echo $1 > .until
fi

./build --until $1  &&  ./subx_bin test $2