1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/tool/bisect.sh
nobu 9244cfa1f6 tool/bisect.sh: extracted build part [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-03-01 03:26:05 +00:00

50 lines
954 B
Bash
Executable file

#!/bin/sh
# usage:
# edit $(srcdir)/test.rb
# git bisect start `git svn find-rev <rBADREV>` `git svn find-rev <rGOODREV>`
# cd <builddir>
# make bisect (or bisect-ruby for full ruby)
if [ "x" = "x$MAKE" ]; then
MAKE=make
fi
case $1 in
miniruby | ruby ) # (miniruby|ruby) <srcdir>
srcdir="$2"
builddir=`pwd` # assume pwd is builddir
path="$builddir/_bisect.sh"
echo "path: $path"
cp "$0" "$path"
cd "$srcdir"
set -x
exec git bisect run "$path" "run-$1"
;;
run-miniruby )
prep=mini
run=run
;;
run-ruby )
prep=program
run=runruby
;;
"" )
echo missing command 1>&2
exit 1
;;
* )
echo unknown command "'$1'" 1>&2
exit 1
;;
esac
case "$0" in
*/*)
# assume a copy of this script is in builddir
cd `echo "$0" | sed 's:\(.*\)/.*:\1:'` || exit 125
;;
esac
for target in srcs Makefile $prep; do
$MAKE $target || exit 125
done
exec $MAKE $run