File: test.86

package info (click to toggle)
dupd 1.7.3-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 12,688 kB
  • sloc: ansic: 8,381; sh: 879; makefile: 121; perl: 58
file content (25 lines) | stat: -rwxr-xr-x 685 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
25
#!/usr/bin/env bash

source common

DESC="interactive commands need to ignore files under minsize (same as scan)"

$DUPD_CMD scan --path `pwd`/files10 -q --minsize 10
checkrv $?

DESC="verify dups ignores files under minsize (same as scan)"
$DUPD_CMD dups --cut `pwd`/files10/ --path `pwd`/files10/ > nreport
checkrv $?
check_nreport output.86

DESC="verify uniques ignores files under minsize (same as scan)"
$DUPD_CMD uniques --cut `pwd`/files10/ --path `pwd`/files10/ > nreport
checkrv $?
check_nreport output.86

DESC="verify ls ignores files under minsize (same as scan)"
$DUPD_CMD ls --cut `pwd`/files10/ --path `pwd`/files10/ > nreport
checkrv $?
check_nreport output.86

tdone