--- a/tests/test-hgrc.t Fri Oct 11 18:08:50 2019 +0100
+++ b/tests/test-hgrc.t Thu Oct 17 12:10:42 2019 +0200
@@ -49,6 +49,18 @@
paths.default=$TESTTMP/foo%bar
$ cd ..
+Check %include
+
+ $ echo '[section]' > $TESTTMP/included
+ $ echo 'option = value' >> $TESTTMP/included
+ $ echo '%include $TESTTMP/included' >> $HGRC
+ $ hg showconfig section
+ section.option=value
+ $ chmod u-r $TESTTMP/included
+ $ hg showconfig section
+ hg: parse error at $TESTTMP/hgrc:2: cannot include $TESTTMP/included (Permission denied)
+ [255]
+
issue1829: wrong indentation
$ echo '[foo]' > $HGRC