##// END OF EJS Templates
spelling: nonexistent
timeless@mozdev.org -
r17492:973c2b0b default
parent child Browse files
Show More
@@ -139,7 +139,7 b' moving a missing file'
139 139 foo3 does not exist!
140 140 $ hg up -qC .
141 141
142 copy --after to a nonexistant target filename
142 copy --after to a nonexistent target filename
143 143 $ hg cp -A foo dummy
144 144 foo: not recording copy - dummy does not exist
145 145
@@ -529,12 +529,12 b' test python hook configured with python:'
529 529 [1]
530 530
531 531 $ echo '[hooks]' > .hg/hgrc
532 $ echo "update.ne = python:`pwd`/nonexisting.py:testhook" >> .hg/hgrc
532 $ echo "update.ne = python:`pwd`/nonexistent.py:testhook" >> .hg/hgrc
533 533 $ echo "pre-identify.npmd = python:`pwd`/:no_python_module_dir" >> .hg/hgrc
534 534
535 535 $ hg up null
536 536 loading update.ne hook failed:
537 abort: No such file or directory: $TESTTMP/d/repo/nonexisting.py
537 abort: No such file or directory: $TESTTMP/d/repo/nonexistent.py
538 538 [255]
539 539
540 540 $ hg id
@@ -191,7 +191,7 b' or true.executable not found in PATH:'
191 191 false.whatever=
192 192 true.priority=1
193 193 # hg update -C 1
194 $ hg merge -r 2 --config merge-tools.true.executable=nonexistingmergetool
194 $ hg merge -r 2 --config merge-tools.true.executable=nonexistentmergetool
195 195 merging f
196 196 merging f failed!
197 197 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
@@ -212,7 +212,7 b' or true.executable with bogus path:'
212 212 false.whatever=
213 213 true.priority=1
214 214 # hg update -C 1
215 $ hg merge -r 2 --config merge-tools.true.executable=/nonexisting/mergetool
215 $ hg merge -r 2 --config merge-tools.true.executable=/nonexistent/mergetool
216 216 merging f
217 217 merging f failed!
218 218 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
@@ -336,7 +336,7 b' merge-patterns specifies executable not '
336 336 true.priority=1
337 337 true.executable=cat
338 338 # hg update -C 1
339 $ hg merge -r 2 --config merge-patterns.f=true --config merge-tools.true.executable=nonexistingmergetool
339 $ hg merge -r 2 --config merge-patterns.f=true --config merge-tools.true.executable=nonexistentmergetool
340 340 couldn't find merge tool true specified for f
341 341 merging f
342 342 merging f failed!
@@ -359,7 +359,7 b' merge-patterns specifies executable with'
359 359 true.priority=1
360 360 true.executable=cat
361 361 # hg update -C 1
362 $ hg merge -r 2 --config merge-patterns.f=true --config merge-tools.true.executable=/nonexisting/mergetool
362 $ hg merge -r 2 --config merge-patterns.f=true --config merge-tools.true.executable=/nonexistent/mergetool
363 363 couldn't find merge tool true specified for f
364 364 merging f
365 365 merging f failed!
@@ -240,7 +240,7 b' qimport -e --name with --force'
240 240
241 241 qimport with bad name, should abort before reading file
242 242
243 $ hg qimport non-existant-file --name .hg
243 $ hg qimport non-existent-file --name .hg
244 244 abort: patch name cannot begin with ".hg"
245 245 [255]
246 246
@@ -207,7 +207,7 b' qrefresh --short tests:'
207 207
208 208 $ echo 'orphan' > orphanchild
209 209 $ hg add orphanchild
210 $ hg qrefresh nonexistingfilename # clear patch
210 $ hg qrefresh nonexistentfilename # clear patch
211 211 $ hg qrefresh --short 1/base
212 212 $ hg qrefresh --short 2/base
213 213
@@ -108,9 +108,9 b' qrecord patch (mq not present)'
108 108
109 109 help (bad mq)
110 110
111 $ echo "mq=nonexistant" >> $HGRCPATH
111 $ echo "mq=nonexistent" >> $HGRCPATH
112 112 $ hg help qrecord
113 *** failed to import extension mq from nonexistant: [Errno 2] * (glob)
113 *** failed to import extension mq from nonexistent: [Errno 2] * (glob)
114 114 hg qrecord [OPTION]... PATCH [FILE]...
115 115
116 116 interactively record a new patch
@@ -121,7 +121,7 b' help (bad mq)'
121 121
122 122 help (mq present)
123 123
124 $ sed 's/mq=nonexistant/mq=/' $HGRCPATH > hgrc.tmp
124 $ sed 's/mq=nonexistent/mq=/' $HGRCPATH > hgrc.tmp
125 125 $ mv hgrc.tmp $HGRCPATH
126 126
127 127 $ hg help qrecord
@@ -66,7 +66,7 b' rename --after a single file when src an'
66 66 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
67 67 $ rm d2/c
68 68
69 rename --after a single file to a nonexistant target filename
69 rename --after a single file to a nonexistent target filename
70 70
71 71 $ hg rename --after d1/a dummy
72 72 d1/a: not recording move - dummy does not exist (glob)
@@ -46,7 +46,7 b' test what happens if we want to trick hg'
46 46 $ rm dir/a.o
47 47 $ rm dir/b.o
48 48 $ mkdir dir/a.o
49 $ ln -s nonexist dir/b.o
49 $ ln -s nonexistent dir/b.o
50 50 $ mkfifo a.c
51 51
52 52 it should show a.c, dir/a.o and dir/b.o deleted
General Comments 0
You need to be logged in to leave comments. Login now