diff options
author | David D Kilzer <ddkilzer@kilzer.net> | 2007-11-10 22:10:33 -0800 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2007-11-17 13:28:21 -0800 |
commit | fede44b2e18c1e5985197913e8dcf5753f4eb99e (patch) | |
tree | fd4104387e7d65a3753effa4b46ea836ed87a22b /t/t9116-git-svn-log.sh | |
parent | 3caf320ba8fc8277b5875fe306efbfa333b92487 (diff) | |
download | git-fede44b2e18c1e5985197913e8dcf5753f4eb99e.tar.gz git-fede44b2e18c1e5985197913e8dcf5753f4eb99e.tar.xz |
git-svn log: fix ascending revision ranges
Fixed typo in Git::SVN::Log::git_svn_log_cmd(). Previously a command like
"git-svn log -r1:4" would only show a commit log separator.
Added tests for ascending and descending revision ranges.
Signed-off-by: David D Kilzer <ddkilzer@kilzer.net>
Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 't/t9116-git-svn-log.sh')
-rwxr-xr-x | t/t9116-git-svn-log.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t9116-git-svn-log.sh b/t/t9116-git-svn-log.sh index 0d4e6b3f0..618d7e9c0 100755 --- a/t/t9116-git-svn-log.sh +++ b/t/t9116-git-svn-log.sh @@ -45,4 +45,18 @@ test_expect_success 'run log against a from trunk' " git svn log -r3 a | grep ^r3 " +printf 'r2 \nr4 \n' > expected-range-r2-r4 + +test_expect_success 'test ascending revision range' " + git reset --hard trunk && + git svn log -r 1:4 | grep '^r[0-9]' | cut -d'|' -f1 | diff -u expected-range-r2-r4 - + " + +printf 'r4 \nr2 \n' > expected-range-r4-r2 + +test_expect_success 'test descending revision range' " + git reset --hard trunk && + git svn log -r 4:1 | grep '^r[0-9]' | cut -d'|' -f1 | diff -u expected-range-r4-r2 - + " + test_done |