1 |
siliconforks |
114 |
#!/bin/sh |
2 |
|
|
# recursive-crlf.sh - test recursive directory instrumentation, CRLF line endings |
3 |
|
|
# Copyright (C) 2008 siliconforks.com |
4 |
|
|
# |
5 |
|
|
# This program is free software; you can redistribute it and/or modify |
6 |
|
|
# it under the terms of the GNU General Public License as published by |
7 |
|
|
# the Free Software Foundation; either version 2 of the License, or |
8 |
|
|
# (at your option) any later version. |
9 |
|
|
# |
10 |
|
|
# This program is distributed in the hope that it will be useful, |
11 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 |
|
|
# GNU General Public License for more details. |
14 |
|
|
# |
15 |
|
|
# You should have received a copy of the GNU General Public License along |
16 |
|
|
# with this program; if not, write to the Free Software Foundation, Inc., |
17 |
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
18 |
|
|
|
19 |
|
|
set -e |
20 |
|
|
|
21 |
|
|
trap 'rm -fr TMP EXPECTED DIR OUT' 1 2 3 15 |
22 |
|
|
|
23 |
|
|
export PATH=.:..:$PATH |
24 |
|
|
|
25 |
|
|
rm -fr TMP EXPECTED DIR |
26 |
|
|
|
27 |
|
|
mkdir -p TMP/1/2 |
28 |
|
|
cd recursive |
29 |
|
|
cp *.html *.js *.css *.png *.txt ../TMP |
30 |
|
|
cp 1/1.html 1/1.js 1/1.css ../TMP/1 |
31 |
|
|
cp 1/2/2.html 1/2/2.js 1/2/2.css ../TMP/1/2 |
32 |
|
|
cd .. |
33 |
|
|
cat recursive/script.js | sed 's/$/\r/g' > TMP/script.js |
34 |
|
|
cat recursive/1/1.js | sed 's/$/\r/g' > TMP/1/1.js |
35 |
|
|
cat recursive/1/2/2.js | sed 's/$/\r/g' > TMP/1/2/2.js |
36 |
|
|
|
37 |
|
|
mkdir -p EXPECTED/1/2 |
38 |
|
|
cd recursive.expected |
39 |
|
|
cp *.html *.js *.css *.png *.txt ../EXPECTED |
40 |
|
|
cp 1/1.html 1/1.js 1/1.css ../EXPECTED/1 |
41 |
|
|
cp 1/2/2.html 1/2/2.js 1/2/2.css ../EXPECTED/1/2 |
42 |
|
|
cd .. |
43 |
|
|
cat recursive.expected/script.js | sed 's/@PREFIX@//g' > EXPECTED/script.js |
44 |
|
|
cat recursive.expected/1/1.js | sed 's/@PREFIX@//g' > EXPECTED/1/1.js |
45 |
|
|
cat recursive.expected/1/2/2.js | sed 's/@PREFIX@//g' > EXPECTED/1/2/2.js |
46 |
|
|
cp ../jscoverage*.css ../jscoverage*.gif ../jscoverage*.html ../jscoverage*.js EXPECTED |
47 |
|
|
|
48 |
|
|
$VALGRIND jscoverage TMP DIR |
49 |
|
|
test -d DIR |
50 |
|
|
diff --strip-trailing-cr -r EXPECTED DIR |
51 |
|
|
|
52 |
|
|
$VALGRIND jscoverage --verbose TMP DIR > OUT |
53 |
|
|
test -d DIR |
54 |
|
|
sort OUT -o OUT |
55 |
|
|
diff --strip-trailing-cr verbose.expected.out OUT |
56 |
|
|
diff --strip-trailing-cr -r EXPECTED DIR |
57 |
|
|
|
58 |
|
|
rm -fr TMP EXPECTED DIR OUT |