2016-08-15 20:43:34 +00:00
|
|
|
Generate test cases like this:
|
|
|
|
|
2016-10-16 08:32:44 +00:00
|
|
|
$ ./check.sh
|
2016-08-15 20:43:34 +00:00
|
|
|
|
|
|
|
Test a specific case like that:
|
|
|
|
|
|
|
|
$ ./check.sh source pkgc:i386 none all none allowed depends pkgb:any
|
|
|
|
|
|
|
|
Check all cases:
|
|
|
|
|
2016-10-16 08:32:44 +00:00
|
|
|
$ ./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
|
2016-08-15 20:43:34 +00:00
|
|
|
|
|
|
|
Or in parallel:
|
|
|
|
|
2016-10-16 08:32:44 +00:00
|
|
|
$ ./check.sh | xargs --max-procs=8 --max-lines=1 ./check.sh 2>/dev/null
|