@@ -11,6 +11,10 @@
> EOF
#endif
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
== tests added in 0.7 ==
$ hg init test-symlinks-0.7; cd test-symlinks-0.7;
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ hg init repo
$ cd repo
$ hg init subrepo
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ cat >> $HGRCPATH <<EOF
> [extdiff]
> # for portability:
@@ -9,6 +9,10 @@
> EOF
#endif
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ hg init repo1
$ cd repo1
$ mkdir a b a/1 b/1 b/2
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ mkdir folder
$ cd folder
$ hg init
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ cat <<EOF >> $HGRCPATH
> [ui]
> color = always
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ hg init t
$ cd t
@@ -11,6 +11,10 @@
> EOF
#endif
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ hg init t
$ cd t
@@ -1,5 +1,9 @@
#require symlink execbit
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ tellmeabout() {
> if [ -h $1 ]; then
> echo $1 is a symlink:
@@ -4,6 +4,9 @@
#require execbit
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
Initial setup
==============
@@ -2,6 +2,10 @@
Test non-regression on the corruption associated with issue6528
===============================================================
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
Setup
=====
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ hg init a
$ mkdir a/d1
$ mkdir a/d1/d2
@@ -9,6 +9,10 @@
> EOF
#endif
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ hg init ignorerepo
$ cd ignorerepo
@@ -1,5 +1,9 @@
#require execbit
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ hg init
$ echo a > a
$ hg ci -Am'not executable'
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
Test encode/decode filters
$ hg init
@@ -9,6 +9,10 @@
> EOF
#endif
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
------ Test dirstate._dirs refcounting
$ hg init t
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
$ hg init
$ cat << EOF > a
> Small Mathematical Series.
@@ -1,3 +1,7 @@
+TODO: fix rhg bugs that make this test fail when status is enabled
+ $ unset RHG_STATUS
+
+
Create a repository:
#if no-extraextensions
@@ -3228,6 +3228,7 @@
# output.
osenvironb[b'RHG_ON_UNSUPPORTED'] = b'fallback'
osenvironb[b'RHG_FALLBACK_EXECUTABLE'] = real_hg
+ osenvironb[b'RHG_STATUS'] = b'1'
else:
# drop flag for hghave
osenvironb.pop(b'RHG_INSTALLED_AS_HG', None)
@@ -114,6 +114,7 @@
b"rhg",
b"fallback-executable",
);
+ config.add_for_environment_variable("RHG_STATUS", b"rhg", b"status");
// HGRCPATH replaces user config
if opt_rc_path.is_none() {