about summary refs log tree commit diff stats
path: root/html/expected-result.png
Commit message (Collapse)AuthorAgeFilesLines
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-0/+0
| | | | | | | | | | | | I'm dropping all mention of 'recipe' terminology from the Readme. That way I hope to avoid further bike-shedding discussions while I very slowly decide on the right terminology with my students. I could be smarter in my error messages and use 'recipe' when code uses it and 'function' otherwise. But what about other words like ingredient? It would all add complexity that I'm not yet sure is worthwhile. But I do want separate experiences for veteran programmers reading about Mu on github and for people learning programming using Mu.
* 1983Kartik K. Agaram2015-08-131-0/+0
1113882450382ebe39db7dd8690812bac1aba7'>^
b589f25a ^
91fe63cd ^









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

./build3 --until $1  &&  ./mu_bin test $2