about summary refs log tree commit diff stats
path: root/key.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-11 18:19:01 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-11 18:19:01 +0200
commitb1669b5c48f71c9a7a919dbf09a1af527c62f69a (patch)
treef94f1018357afe5abef9cde46a80d16a9676010f /key.c
parent586f66331d1105be03c42e6faeae1672b974a98a (diff)
downloaddwm-b1669b5c48f71c9a7a919dbf09a1af527c62f69a.tar.gz
removed unnecessary sel stuff
Diffstat (limited to 'key.c')
0 files changed, 0 insertions, 0 deletions
itter Kartik Agaram <vc@akkartik.com> 2018-06-05 23:39:47 -0700 4251 - speed up repeated builds until the same layer' href='/akkartik/mu/commit/build_and_test_until?h=hlt&id=91fe63cdc15daa2ff15c0527bbf29abadb134ecc'>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