~ubuntu-branches/ubuntu/utopic/devscripts/utopic-security

« back to all changes in this revision

Viewing changes to test/bashisms/traps.sh.out

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2013-02-18 22:27:33 UTC
  • mfrom: (10.9.22 experimental)
  • Revision ID: package-import@ubuntu.com-20130218222733-7krtkqzko32xte0z
Tags: 2.13.0ubuntu1
* Merge from Debian experimental. Remaining changes:
  - Convert python scripts to python3. (Closes: #680313)
    Debian bug #695259 needs to be fixed to get the change into Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
possible bashism in bashisms/traps.sh line 3 (trap with ERR|DEBUG|RETURN):
 
2
trap foo ERR # BASHISM
 
3
possible bashism in bashisms/traps.sh line 4 (trap with ERR|DEBUG|RETURN):
 
4
trap foo RETURN # BASHISM
 
5
possible bashism in bashisms/traps.sh line 5 (trap with ERR|DEBUG|RETURN):
 
6
trap foo DEBUG # BASHISM
 
7
possible bashism in bashisms/traps.sh line 7 (trap with ERR|DEBUG|RETURN):
 
8
trap "echo BASHISM" ERR
 
9
possible bashism in bashisms/traps.sh line 8 (trap with ERR|DEBUG|RETURN):
 
10
trap "echo BASHISM" RETURN
 
11
possible bashism in bashisms/traps.sh line 9 (trap with ERR|DEBUG|RETURN):
 
12
trap "echo BASHISM" DEBUG
 
13
possible bashism in bashisms/traps.sh line 15 (trap with ERR|DEBUG|RETURN):
 
14
trap $(foo BASHISM) ERR
 
15
possible bashism in bashisms/traps.sh line 16 (trap with ERR|DEBUG|RETURN):
 
16
trap "$(foo BASHISM)" RETURN
 
17
possible bashism in bashisms/traps.sh line 17 (trap with ERR|DEBUG|RETURN):
 
18
trap "echo $foo BASHISM" DEBUG