From f749e393e47687971777d79c043562a91e4f493d Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 8 Jul 2008 20:33:36 +0200 Subject: [PATCH] Test "stg status" with -M in stgit.diff-opts MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Karl Hasselström It used to fail, before the recent merge of the -O/--diff-opts removal, since the default value of that option was taken from stgit.diff-opts and passed on to stgit.git.tree_status() which couldn't handle it. Signed-off-by: Karl Hasselström --- t/t0002-status.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/t/t0002-status.sh b/t/t0002-status.sh index 5e1e8ca..86ff419 100755 --- a/t/t0002-status.sh +++ b/t/t0002-status.sh @@ -186,4 +186,10 @@ test_expect_success 'Status after renaming a file' ' test_cmp expected.txt output.txt ' +test_expect_success 'Status after renaming a file (with rename detection)' ' + git config stgit.diff-opts -M && + stg status > output.txt && + test_cmp expected.txt output.txt +' + test_done -- [mdw]