Lines Matching refs:SHORT_CIRCUIT
25 SHORT_CIRCUIT=0
209 1 | orig) SHORT_CIRCUIT=1; ;;
210 2 | patched) SHORT_CIRCUIT=2; ;;
211 3 | checksum) SHORT_CIRCUIT=3; ;;
212 4 | diff) SHORT_CIRCUIT=4; ;;
213 5 | kmod) SHORT_CIRCUIT=5; ;;
233 if [[ $# -eq 0 ]] && (( SHORT_CIRCUIT <= 2 )); then
443 if (( SHORT_CIRCUIT >= 2 )); then
444 [[ -f "$ORIG_DIR/.complete" ]] || die "-S $SHORT_CIRCUIT requires completed $ORIG_DIR"
446 if (( SHORT_CIRCUIT >= 3 )); then
447 [[ -f "$PATCHED_DIR/.complete" ]] || die "-S $SHORT_CIRCUIT requires completed $PATCHED_DIR"
449 if (( SHORT_CIRCUIT >= 4 )); then
450 [[ -f "$ORIG_CSUM_DIR/.complete" ]] || die "-S $SHORT_CIRCUIT requires completed $ORIG_CSUM_DIR"
451 [[ -f "$PATCHED_CSUM_DIR/.complete" ]] || die "-S $SHORT_CIRCUIT requires completed $PATCHED_CSUM_DIR"
453 if (( SHORT_CIRCUIT >= 5 )); then
454 [[ -f "$DIFF_DIR/.complete" ]] || die "-S $SHORT_CIRCUIT requires completed $DIFF_DIR"
457 (( SHORT_CIRCUIT <= 1 )) && rm -rf "$TMP_DIR"
898 if (( SHORT_CIRCUIT <= 2 )); then
903 if (( SHORT_CIRCUIT <= 1 )); then
911 if (( SHORT_CIRCUIT <= 2 )); then
922 if (( SHORT_CIRCUIT <= 3 )); then
929 if (( SHORT_CIRCUIT <= 4 )); then
938 if (( SHORT_CIRCUIT <= 5 )); then