Lines Matching +full:pll +full:- +full:in
3 # SPDX-License-Identifier: BSD-2-Clause
5 # Copyright (c) 2018-2024 Gavin D. Howard and contributors.
7 # Redistribution and use in source and binary forms, with or without
13 # * Redistributions in binary form must reproduce the above copyright notice,
14 # this list of conditions and the following disclaimer in the documentation
20 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 if [ $# -eq 1 ]; then
42 print 'usage: %s [-n] dir [run_extra_tests] [run_stack_tests] [gen_tests] [run_problematic_tests] [time_tests] [exec args...]\n' \
47 # We need to figure out if we should run stuff in parallel.
48 pll=1
52 case "$opt" in
53 n) pll=0 ; set -e ;;
58 shift $(($OPTIND - 1))
60 # Command-line processing.
61 if [ "$#" -ge 1 ]; then
69 if [ "$#" -lt 1 ]; then
78 if [ "$#" -lt 1 ]; then
87 if [ "$#" -lt 1 ]; then
96 if [ "$#" -lt 1 ]; then
105 if [ "$#" -lt 1 ]; then
114 if [ "$#" -lt 1 ]; then
150 if [ "$extra" -eq 0 ]; then
151 if [ -z "${extra_required##*$t*}" ]; then
157 if [ "$pll" -ne 0 ]; then
167 if [ "$pll" -ne 0 ]; then
175 if [ "$pll" -ne 0 ]; then
180 sh "$testdir/scripts.sh" -n "$d" "$extra" "$run_stack_tests" "$generate_tests" \
185 if [ "$pll" -ne 0 ]; then
193 if [ "$pll" -ne 0 ]; then
200 # Test all the files in the errors directory. While the other error test (in
202 # it runs the file through stdin and as a file on the command-line.
203 for testfile in $testdir/$d/errors/*.txt; do
207 if [ "$pll" -ne 0 ]; then
217 if [ "$pll" -ne 0 ]; then
224 if [ "$pll" -ne 0 ]; then
228 for p in $pids; do
233 if [ "$err" -ne 0 ]; then
239 if [ "$exit_err" -ne 0 ]; then