Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a3896fbc authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 1001 into donut

* changes:
  Change runtest env shortcut to point to runtest.py
parents cfb08200 3ec9f33d
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -944,18 +944,14 @@ function runtest()
        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
        return
    fi
    (cd "$T" && development/tools/runtest $@)
    (cd "$T" && development/testrunner/runtest.py $@)
}

# simple shortcut to the runtest.py command
# TODO: Remove this some time after 1 June 2009
function runtest_py()
{
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
        return
    fi
    (cd "$T" && development/testrunner/runtest.py $@)
    echo "runtest_py is obsolete; use runtest instead" >&2
    return 1
}

function godir () {