torture: Avoid script syntax error when insufficient CPUs
Parentheses are special to bash, so use an overflow flag that doesn't use them. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
This commit is contained in:
parent
b826565aaf
commit
91afa21d5d
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ function dump(first, pastlast)
|
||||||
cfr[jn] = cf[j] "." cfrep[cf[j]];
|
cfr[jn] = cf[j] "." cfrep[cf[j]];
|
||||||
}
|
}
|
||||||
if (cpusr[jn] > ncpus && ncpus != 0)
|
if (cpusr[jn] > ncpus && ncpus != 0)
|
||||||
ovf = "(!)";
|
ovf = "-ovf";
|
||||||
else
|
else
|
||||||
ovf = "";
|
ovf = "";
|
||||||
print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date`";
|
print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date`";
|
||||||
|
|
Loading…
Add table
Reference in a new issue