diff options
author | Junio C Hamano <junkio@cox.net> | 2006-12-13 10:46:23 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-13 10:46:23 -0800 |
commit | e4d45dd3bb5bd8a1db2bc109f992560da22e9c4e (patch) | |
tree | 1711624da89c387203a163227f857f8fcd0106f7 /t/t0000-basic.sh | |
parent | 37adac765a469f8f8495e2befe7afeda65a2b272 (diff) | |
parent | f953831e030d3ece7346bdb5c4fde4fde43c925e (diff) | |
download | git-e4d45dd3bb5bd8a1db2bc109f992560da22e9c4e.tar.gz git-e4d45dd3bb5bd8a1db2bc109f992560da22e9c4e.tar.xz |
Merge branch 'js/merge'
* js/merge:
merge-recursive: add/add really is modify/modify with an empty base
Get rid of the dependency on RCS' merge program
merge-file: support -p and -q; fix compile warnings
Add builtin merge-file, a minimal replacement for RCS merge
xdl_merge(): fix and simplify conflict handling
xdl_merge(): fix thinko
xdl_merge(): fix an off-by-one bug
merge-recursive: use xdl_merge().
xmerge: make return value from xdl_merge() more usable.
xdiff: add xdl_merge()
Diffstat (limited to 't/t0000-basic.sh')
-rwxr-xr-x | t/t0000-basic.sh | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh index 81f3bedc9..3260d1d7a 100755 --- a/t/t0000-basic.sh +++ b/t/t0000-basic.sh @@ -19,11 +19,7 @@ modification *should* take notice and update the test vectors here. ' ################################################################ -# It appears that people are getting bitten by not installing -# 'merge' (usually part of RCS package in binary distributions). -# Check this and error out before running any tests. Also catch -# the bogosity of trying to run tests without building while we -# are at it. +# It appears that people try to run tests without building... ../git >/dev/null if test $? != 1 @@ -32,14 +28,6 @@ then exit 1 fi -merge >/dev/null 2>/dev/null -if test $? = 127 -then - echo >&2 'You do not seem to have "merge" installed. -Please check INSTALL document.' - exit 1 -fi - . ./test-lib.sh ################################################################ |