comparison tests/test-win32text @ 7226:b71a52f101dc

Make it possible to disable filtering for a pattern. Rationale: Apparently there were no way to disable for example win32text extension locally. RFC: Can it already be done another way?
author Mads Kiilerich <mads@kiilerich.com>
date Tue, 14 Oct 2008 21:28:49 +0200
parents 653ddd1d7cd7
children 441dc7becd43
comparison
equal deleted inserted replaced
7225:59b4ae211584 7226:b71a52f101dc
111 echo modified >> linefeed 111 echo modified >> linefeed
112 hg st -q 112 hg st -q
113 hg revert -a 113 hg revert -a
114 hg st -q 114 hg st -q
115 python print.py < linefeed 115 python print.py < linefeed
116
117 echo "# disable extension again"
118 echo '[decode]' >> .hg/hgrc
119 echo '** = !' >> .hg/hgrc
120 echo '[encode]' >> .hg/hgrc
121 echo '** = !' >> .hg/hgrc
122 cat .hg/hgrc
123 echo
124
125 rm f3 f4.bat bin
126 hg co 2>&1 | python -c 'import sys, os; sys.stdout.write(sys.stdin.read().replace(os.getcwd(), "...."))'
127 python print.py < bin
128 python print.py < f3
129 python print.py < f4.bat
130 echo
131