Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
LU-10365 tests: set proper paths headers for sanity test 400a
[fs/lustre-release.git]
/
lustre
/
tests
/
compile.sh
1
#!/bin/sh
2
set -evx
3
4
MOUNT=${MOUNT:-/mnt/lustre}
5
DIR=${DIR:-$MOUNT}
6
SRC=${SRC:-`dirname $0`/../..}
7
export CC=${CC:-gcc}
8
while date; do
9
for i in lustre; do
10
TGT=$DIR/$i
11
[ -d $TGT ] || cp -av $SRC/$i/ $TGT
12
make -C $TGT clean
13
make -C $TGT -j2
14
make -C $TGT clean
15
done
16
done