about summary refs log tree commit diff stats
path: root/HACKING.md
Commit message (Collapse)AuthorAgeFilesLines
* HACKING: document the COMPAT conventionhut2016-01-241-0/+4
|
* HACKING.md: more detailed PGP instructions.hut2015-11-231-2/+7
|
* HACKING.md: typohut2015-11-231-2/+2
|
* HACKING.md: fixed markdownhut2015-11-231-2/+2
|
* added my PGP key to HACKING.mdhut2015-11-231-0/+93
|
* HACKING.md: better specification of python versionshut2014-12-111-1/+1
|
* HACKING.md: clarificationshut2014-12-101-4/+4
|
* HACKING.md: typohut2014-12-101-1/+1
|
* HACKING.md: use markdown list in "Starting Points" subsectionhut2014-12-101-5/+7
|
* use markdown in HACKING.md, update it, fix typoshut2014-12-101-28/+46
|
* mv doc/HACKING ./HACKING.mdhut2014-12-101-0/+74
t&id=6e01b8902ed9ceebbde8047e06c218eb6b04c035'>6e01b890 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

           
               
  
                                        
               
                                     
    
 
                     
        
                                   





                                                      
#!/bin/bash

for f in [0-9]*
do
  if [ "$f" \< "$1" ]; then continue; fi
  echo "=== $f"
  ./build_and_test_until $f || exit 0
done

echo "=== chessboard"
rm mu.cc
CXX=clang++ ./mu test chessboard.mu

for f in edit/[0-9]*
do
  echo "=== edit: until $f"
  ./mu test `echo edit/[0-9]* |perl -pwe "s,$f.*,$f,"`
done