summary refs log tree commit diff stats
path: root/doc/pydoc/test.tc_directory.html
Commit message (Collapse)AuthorAgeFilesLines
* updated pydochut2010-03-121-1/+14
|
* incremented version number and updated pydoc html files v1.0.3hut2010-02-161-150/+49
|
* moved pydoc pages to doc/pydochut2009-12-251-0/+306
ecb1734b9e1704f4f6e4b3821ff01'>^
6e1eeeeb ^
a6a95dae ^
6e1eeeeb ^


1baa04db ^
1baa04db ^
6e1eeeeb ^
1baa04db ^

6e1eeeeb ^
d9ee2076 ^
f902aa09 ^
4ba60f35 ^
6e1eeeeb ^













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
28
29
30
31
32
33
           
                                                                            
 
                                               
 
      
 


                             
  
               
                           

    
                                
       
                                                                     
 













                                                                                         
#!/bin/bash
# Repeatedly stop building until successive layers, and run all tests built.
#
# Assumes .subx files all come after .cc files.

set -e

cd `dirname $0`
# add C++ files one at a time
for f in [0-9]*cc
do
  echo "=== $f"
  ./build_and_test_until $f
done

# build everything one last time
./clean
./build  # build optimized since we'll be running it repeatedly below

# add SubX files one at a time
for f in [0-9]*.subx
do
  [ $f == *'memory_layout.subx' ]  &&  continue  # the very first .subx layer has no code
  echo "=== $f"
  ./subx translate $(enumerate/enumerate --until $f |grep '\.subx$') -o a.elf
  ./subx run a.elf
  echo
  test `uname` = 'Linux'  &&  {
    chmod +x a.elf
    ./a.elf
    echo
  } || true
done