summary refs log tree commit diff stats
path: root/lib/std/stackframes.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/stackframes.nim')
0 files changed, 0 insertions, 0 deletions
u/commit/subx/test_layers?h=hlt&id=c519b6fe9e9ac89173c0cf4170c7725ea09e2d6e'>c519b6fe ^
ab2c7efd ^
57628c0e ^
c519b6fe ^
79c7700b ^
c519b6fe ^
1dcd9350 ^
c519b6fe ^
c519b6fe ^
57628c0e ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27


                                                                            

      
               




                                       
 
           
                        
  
         
                                  
                                          
                                      
    






                                                 
#!/bin/bash
# Repeatedly stop building until successive layers, and run all tests built.

set -e

cd `dirname $0`
for f in [0-9]*
do
  echo "=== $f"
  ./build_and_test_until $f  ||  exit 1
done

./clean top
for f in examples/*.subx
do
  echo $f
  target=`echo $f |sed 's/\..*//'`
  CFLAGS=-g ./subx translate $f -o $target
  git diff --quiet $target  ||  exit 1
done
for f in apps/*.subx
do
  echo $f
  target=`echo $f |sed 's/\..*//'`
  CFLAGS=-g ./subx translate *.subx $f -o $target
  git diff --quiet $target  ||  exit 1
done