# HG changeset patch # User Brodie Rao # Date 2010-09-02 16:48:46 # Node ID c85e07a2d783ca055872f01812919097690be5bd # Parent e59156a1316f1d4e210eda6b694ccea1a47fce74 test-merge5: ensure updating to tip across branches is tested When doing "hg update" across branches (without any revision specified), hg will abort and ask the user to merge or do hg update -c. This tests for that error. diff --git a/tests/test-merge5.t b/tests/test-merge5.t --- a/tests/test-merge5.t +++ b/tests/test-merge5.t @@ -13,6 +13,12 @@ $ hg commit -A -m"comment #2" -d "1000000 0" removing b created new head + $ hg update 1 + 1 files updated, 0 files merged, 0 files removed, 0 files unresolved + $ hg update + abort: crosses branches (use 'hg merge' or use 'hg update -c') + $ hg update -c + 0 files updated, 0 files merged, 1 files removed, 0 files unresolved $ mv a c in theory, we shouldn't need the "-y" below, but it prevents this test from hanging when "hg update" erroneously prompts the