File: uniqueoptions.sh

package info (click to toggle)
darcs 2.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,960 kB
  • sloc: haskell: 47,748; sh: 13,466; ansic: 447; perl: 134; makefile: 8
file content (24 lines) | stat: -rw-r--r-- 486 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash
# Check that each command expects each option only once

. ./lib

rm -rf temp1
mkdir temp1
cd temp1

for i in `darcs --commands | grep -v -- -- | xargs echo`; do
    echo -n "Checking $i... "
    # only output actual command options, i.e. lines that contain a --
    darcs $i --help | grep -- "--" | sort > $i
    uniq $i > uni$i
    if cmp $i uni$i; then
        echo passed.
    else
        echo failed!
        diff -c uni$i $i
        exit 1
    fi
done

cd ..