Mercurial > hg
comparison tests/test-phases.t @ 47859:155a2ec8a9dc
merge with stable
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sun, 22 Aug 2021 16:32:06 -0400 |
parents | f1af5a084862 |
children | bf11ff22a9af |
comparison
equal
deleted
inserted
replaced
47802:de2e04fe4897 | 47859:155a2ec8a9dc |
---|---|
896 $ hg add X | 896 $ hg add X |
897 $ hg status | 897 $ hg status |
898 A X | 898 A X |
899 $ hg --config "phases.new-commit=internal" commit -m "my test internal commit" 2>&1 | grep ProgrammingError | 899 $ hg --config "phases.new-commit=internal" commit -m "my test internal commit" 2>&1 | grep ProgrammingError |
900 ** ProgrammingError: this repository does not support the internal phase | 900 ** ProgrammingError: this repository does not support the internal phase |
901 raise error.ProgrammingError(msg) | 901 raise error.ProgrammingError(msg) (no-pyoxidizer !) |
902 *ProgrammingError: this repository does not support the internal phase (glob) | 902 *ProgrammingError: this repository does not support the internal phase (glob) |
903 $ hg --config "phases.new-commit=archived" commit -m "my test archived commit" 2>&1 | grep ProgrammingError | 903 $ hg --config "phases.new-commit=archived" commit -m "my test archived commit" 2>&1 | grep ProgrammingError |
904 ** ProgrammingError: this repository does not support the archived phase | 904 ** ProgrammingError: this repository does not support the archived phase |
905 raise error.ProgrammingError(msg) | 905 raise error.ProgrammingError(msg) (no-pyoxidizer !) |
906 *ProgrammingError: this repository does not support the archived phase (glob) | 906 *ProgrammingError: this repository does not support the archived phase (glob) |
907 | 907 |
908 $ cd .. | 908 $ cd .. |
909 | 909 |
910 Check it works fine with repository that supports it. | 910 Check it works fine with repository that supports it. |