15 lines
360 B
Text
15 lines
360 B
Text
Generate test cases like this:
|
|
|
|
$ ./check.sh
|
|
|
|
Test a specific case like that:
|
|
|
|
$ ./check.sh source pkgc:i386 none all none allowed depends pkgb:any
|
|
|
|
Check all cases:
|
|
|
|
$ ./check.sh | while read a b c d e f g h; do ./check.sh $a $b $c $d $e $f $g $h 2>/dev/null; done
|
|
|
|
Or in parallel:
|
|
|
|
$ ./check.sh | xargs --max-procs=8 --max-lines=1 ./check.sh 2>/dev/null
|