~ubuntu-branches/ubuntu/raring/maradns/raring

« back to all changes in this revision

Viewing changes to deadwood-2.4.10/sqa/sqa_bigpacket/do.test

  • Committer: Bazaar Package Importer
  • Author(s): Nicholas Bamber
  • Date: 2011-02-04 16:26:50 UTC
  • mfrom: (1.1.15 upstream) (10.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110204162650-3gsrxedcsbp8vkeq
Tags: 1.4.06-1
* New maintainer (Closes: #610842)
* New upstream version
* Upped standards version to 3.9.1 - no changes
* Changed to '3.0 (quilt)' format
* Rewrote debian/rules and added patches to not change source code
* Resolved python dependencies
* Refreshed copyright to DEP-5 standard
* Put 'set -e' in maintainer scripts
* Added patch to fix spelling mistakes
* Tightened up installation of binaries, examples, docs and man pages
* Added patch to improve readability of man pages
* Registered tutorial HTML with doc-base
* TODO.Debian: Added plan for future versions 
* Added extract of bug report about binding to 0.0.0.0
  to doc-base. (Closes: #486497)
* Install resolvconf-script to examples, cf. #608946
* Install zoneserver.init to examples, cf. #582069

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
cat > dwood2rc << EOF
4
 
chroot_dir="$( pwd )"
5
 
ipv4_bind_addresses="127.0.0.2"
6
 
upstream_servers = {}
7
 
upstream_servers["."]="127.0.0.1"
8
 
recursive_acl="127.0.0.1/16"
9
 
tcp_listen=1
10
 
EOF
11
 
 
12
 
export CC="cc"
13
 
export FLAGS=""
14
 
 
15
 
make > /dev/null
16
 
../../src/Deadwood -f dwood2rc | grep -v version | sed 's/[(].*[)]//' &
17
 
./truncated 127.0.0.1 &
18
 
./show_packet_stdout 127.0.0.1 < dns.reply.txt.example.com > /dev/null &
19
 
 
20
 
sleep 3
21
 
 
22
 
dig +tcp @127.0.0.2 txt.example.com TXT | \
23
 
        grep -v DiG | grep -v WHEN | grep -v time | grep -v HEADER
24
 
 
25
 
killall Deadwood
26
 
killall show_packet_stdout
27
 
killall truncated
28
 
rm dwood2rc
29
 
make clean > /dev/null
30
 
sleep 60
31