36 lines
725 B
Bash
Executable file
36 lines
725 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
source tests-common.sh
|
|
|
|
inherit multiprocessing
|
|
|
|
test-makeopts_loadavg() {
|
|
local exp=$1; shift
|
|
tbegin "makeopts_loadavg($*) == ${exp}"
|
|
local act=$(makeopts_loadavg "$@")
|
|
[[ ${act} == "${exp}" ]]
|
|
tend $? "Got back: ${act}"
|
|
}
|
|
|
|
tests=(
|
|
999 "-j"
|
|
999 "-l"
|
|
999 ""
|
|
9 "-l9 -w"
|
|
9 "-l 9 -w-j4"
|
|
3 "-l3 -j 4 -w"
|
|
5 "--load-average=5"
|
|
6 "--load-average 6"
|
|
7 "-l3 --load-average 7 -w"
|
|
4 "-j1 -j 2 --load-average 3 --load-average=4"
|
|
3 " --max-load=3 -x"
|
|
8 " -l 8 "
|
|
)
|
|
for (( i = 0; i < ${#tests[@]}; i += 2 )) ; do
|
|
test-makeopts_loadavg "${tests[i]}" "${tests[i+1]}"
|
|
done
|
|
|
|
texit
|