1 |
siliconforks |
114 |
#!/bin/sh |
2 |
|
|
# recursive-crlf.sh - test recursive directory instrumentation, CRLF line endings |
3 |
siliconforks |
505 |
# Copyright (C) 2008, 2009, 2010 siliconforks.com |
4 |
siliconforks |
114 |
# |
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 |
siliconforks |
126 |
trap 'rm -fr TMP EXPECTED DIR OUT' 0 1 2 3 15 |
22 |
siliconforks |
114 |
|
23 |
|
|
export PATH=.:..:$PATH |
24 |
|
|
|
25 |
siliconforks |
126 |
rm -fr TMP EXPECTED DIR OUT |
26 |
siliconforks |
114 |
|
27 |
|
|
mkdir -p TMP/1/2 |
28 |
|
|
cd recursive |
29 |
siliconforks |
223 |
cp *.html *.js *.css *.png *.txt x ../TMP |
30 |
siliconforks |
114 |
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 |
siliconforks |
126 |
unix2dos TMP/script.js > /dev/null 2> /dev/null |
34 |
|
|
unix2dos TMP/1/1.js > /dev/null 2> /dev/null |
35 |
|
|
unix2dos TMP/1/2/2.js > /dev/null 2> /dev/null |
36 |
siliconforks |
114 |
|
37 |
|
|
mkdir -p EXPECTED/1/2 |
38 |
|
|
cd recursive.expected |
39 |
siliconforks |
223 |
cp *.html *.js *.css *.png *.txt x ../EXPECTED |
40 |
siliconforks |
114 |
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 |
siliconforks |
360 |
cp ../jscoverage.css ../jscoverage-highlight.css ../jscoverage-ie.css \ |
47 |
|
|
../jscoverage-throbber.gif \ |
48 |
|
|
../jscoverage.html \ |
49 |
|
|
../jscoverage.js EXPECTED |
50 |
siliconforks |
114 |
|
51 |
siliconforks |
181 |
$VALGRIND jscoverage --no-highlight TMP DIR |
52 |
siliconforks |
114 |
test -d DIR |
53 |
|
|
diff --strip-trailing-cr -r EXPECTED DIR |
54 |
|
|
|
55 |
siliconforks |
181 |
$VALGRIND jscoverage --no-highlight --verbose TMP DIR > OUT |
56 |
siliconforks |
114 |
test -d DIR |
57 |
|
|
sort OUT -o OUT |
58 |
|
|
diff --strip-trailing-cr verbose.expected.out OUT |
59 |
|
|
diff --strip-trailing-cr -r EXPECTED DIR |