Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/shell/ash_test/run-all

    r2725 r3621  
    3232        #*) echo $x ; sh $x ;;
    3333        *)
     34        echo -n "$1/$x: "
    3435        sh "$x" >"$TOPDIR/$noslash-$x.fail" 2>&1 && \
    35         { echo "$1/$x: ok"; rm "$TOPDIR/$noslash-$x.fail"; } || echo "$1/$x: fail";
     36        { echo "ok"; rm "$TOPDIR/$noslash-$x.fail"; } || echo "fail";
    3637        ;;
    3738    esac
     
    4344    name="${x%%.tests}"
    4445    test -f "$name.right" || continue
     46    echo -n "$1/$x: "
    4547    {
    4648        "$THIS_SH" "./$x" >"$name.xx" 2>&1
    4749        diff -u "$name.xx" "$name.right" >"$TOPDIR/$noslash-$x.fail" \
    4850        && rm -f "$name.xx" "$TOPDIR/$noslash-$x.fail"
    49     } && echo "$1/$x: ok" || echo "$1/$x: fail"
     51    } && echo "ok" || echo "fail"
    5052    done
    5153    )
Note: See TracChangeset for help on using the changeset viewer.