38 |
|
|
39 |
rm -fr DIR |
rm -fr DIR |
40 |
|
|
41 |
|
$VALGRIND jscoverage javascript-setter DIR > OUT 2> ERR && exit 1 |
42 |
|
test ! -s OUT |
43 |
|
test -s ERR |
44 |
|
diff --strip-trailing-cr javascript-setter.expected.err ERR |
45 |
|
|
46 |
|
rm -fr DIR |
47 |
|
|
48 |
$VALGRIND jscoverage 1 2 3 > OUT 2> ERR && exit 1 |
$VALGRIND jscoverage 1 2 3 > OUT 2> ERR && exit 1 |
49 |
test ! -s OUT |
test ! -s OUT |
50 |
test -s ERR |
test -s ERR |
105 |
mkdir -p DIR |
mkdir -p DIR |
106 |
perl -e 'for (1 .. 65536) {print "x = $_\n";}' > DIR/big.js |
perl -e 'for (1 .. 65536) {print "x = $_\n";}' > DIR/big.js |
107 |
$VALGRIND jscoverage DIR DIR2 > OUT 2> ERR && exit 1 |
$VALGRIND jscoverage DIR DIR2 > OUT 2> ERR && exit 1 |
108 |
echo 'jscoverage: big.js: script has more than 65,535 lines' | diff - ERR |
echo 'jscoverage: big.js: script has more than 65,535 lines' | diff --strip-trailing-cr - ERR |
109 |
|
|
110 |
rm -fr DIR DIR2 OUT ERR |
rm -fr DIR DIR2 OUT ERR |