about summary refs log tree commit diff stats
path: root/subx_bare.md
Commit message (Expand)AuthorAgeFilesLines
* .Kartik Agaram2021-03-291-3/+4
* fix some broken linksKartik K. Agaram2021-03-141-1/+1
* 7843 - clean up README after directory reorgKartik K. Agaram2021-03-031-13/+16
* 7439 - start translating Mu programs to baremetalKartik Agaram2020-12-281-3/+3
* 6640Kartik Agaram2020-07-121-32/+32
* 6618 - new docsKartik Agaram2020-07-061-0/+172
c@akkartik.com> 2018-07-30 11:31:09 -0700 committer Kartik Agaram <vc@akkartik.com> 2018-07-30 11:31:09 -0700 4457' href='/akkartik/mu/commit/subx/build_and_test_until?h=main&id=875b6ba897cddb1a70c99327b50921de802d3f39'>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