mirror of
https://github.com/facebook/sapling.git
synced 2025-01-07 14:10:42 +03:00
66bd74e558
Test Plan: run-tests-.py Reviewers: mitrandir, #mercurial Reviewed By: mitrandir Subscribers: ps, terrelln Differential Revision: https://phabricator.intern.facebook.com/D6675896 Tasks: T24908724 Signature: 6675896:1515448382:df8d80cd7356ae8f5fb04586dc4a0a651bc498fd
46 lines
1.2 KiB
Perl
46 lines
1.2 KiB
Perl
#require serve
|
|
|
|
$ hg init test
|
|
$ cd test
|
|
$ echo foo>foo
|
|
$ mkdir foo.d foo.d/bAr.hg.d foo.d/baR.d.hg
|
|
$ echo foo>foo.d/foo
|
|
$ echo bar>foo.d/bAr.hg.d/BaR
|
|
$ echo bar>foo.d/baR.d.hg/bAR
|
|
$ hg commit -A -m 1
|
|
adding foo
|
|
adding foo.d/bAr.hg.d/BaR
|
|
adding foo.d/baR.d.hg/bAR
|
|
adding foo.d/foo
|
|
$ hg serve -p $HGPORT -d --pid-file=../hg1.pid -E ../error.log
|
|
$ hg --config server.uncompressed=False serve -p $HGPORT1 -d --pid-file=../hg2.pid
|
|
|
|
Test server address cannot be reused
|
|
|
|
#if windows
|
|
$ hg serve -p $HGPORT1 2>&1
|
|
abort: cannot start server at '*:$HGPORT1': * (glob)
|
|
[255]
|
|
#else
|
|
$ hg serve -p $HGPORT1 2>&1
|
|
abort: cannot start server at 'localhost:$HGPORT1': $EADDRINUSE$
|
|
[255]
|
|
#endif
|
|
$ cd ..
|
|
$ cat hg1.pid hg2.pid >> $DAEMON_PIDS
|
|
|
|
Load commonly used test logic
|
|
$ . "$TESTDIR/hggit/testutil"
|
|
|
|
Make sure that clone regular mercurial repos over http doesn't break
|
|
|
|
$ hg clone http://localhost:$HGPORT/ copy 2>&1
|
|
requesting all changes
|
|
adding changesets
|
|
adding manifests
|
|
adding file changes
|
|
added 1 changesets with 4 changes to 4 files
|
|
new changesets 8b6053c928fe (?)
|
|
updating to branch default
|
|
4 files updated, 0 files merged, 0 files removed, 0 files unresolved
|