##// END OF EJS Templates
test-serve: add missing globs...
Augie Fackler -
r29563:839380cc default
parent child Browse files
Show More
@@ -34,13 +34,13 b' errors'
34 34 With -v
35 35
36 36 $ hgserve
37 listening at http://localhost/ (bound to 127.0.0.1:HGPORT1)
37 listening at http://localhost/ (bound to 127.0.0.1:HGPORT1) (glob)
38 38 % errors
39 39
40 40 With -v and -p HGPORT2
41 41
42 42 $ hgserve -p "$HGPORT2"
43 listening at http://localhost/ (bound to 127.0.0.1:HGPORT2)
43 listening at http://localhost/ (bound to 127.0.0.1:HGPORT2) (glob)
44 44 % errors
45 45
46 46 With -v and -p daytime (should fail because low port)
@@ -57,25 +57,25 b' With -v and -p daytime (should fail beca'
57 57 With --prefix foo
58 58
59 59 $ hgserve --prefix foo
60 listening at http://localhost/foo/ (bound to 127.0.0.1:HGPORT1)
60 listening at http://localhost/foo/ (bound to 127.0.0.1:HGPORT1) (glob)
61 61 % errors
62 62
63 63 With --prefix /foo
64 64
65 65 $ hgserve --prefix /foo
66 listening at http://localhost/foo/ (bound to 127.0.0.1:HGPORT1)
66 listening at http://localhost/foo/ (bound to 127.0.0.1:HGPORT1) (glob)
67 67 % errors
68 68
69 69 With --prefix foo/
70 70
71 71 $ hgserve --prefix foo/
72 listening at http://localhost/foo/ (bound to 127.0.0.1:HGPORT1)
72 listening at http://localhost/foo/ (bound to 127.0.0.1:HGPORT1) (glob)
73 73 % errors
74 74
75 75 With --prefix /foo/
76 76
77 77 $ hgserve --prefix /foo/
78 listening at http://localhost/foo/ (bound to 127.0.0.1:HGPORT1)
78 listening at http://localhost/foo/ (bound to 127.0.0.1:HGPORT1) (glob)
79 79 % errors
80 80
81 81 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now