##// END OF EJS Templates
tests: finally fix up test-fuzz-targets.t...
tests: finally fix up test-fuzz-targets.t It's been failing on my workstation for a while, since I have a new enough LLVM that I had the fuzzer goo, but not so new that I actually had FuzzedDataProvider. This is a better solution all around in my opinion. I _believe_ this should let us run these tests on most systems, even those using GCC instead of clang. That said, my one attempt to test this on my macOS laptop failed miserably, and I don't feel like doing more work on this right now. Differential Revision: https://phab.mercurial-scm.org/D7566

File last commit:

r43189:6ccf539a default
r44267:19da643d default
Show More
test-websub.t
38 lines | 1.1 KiB | text/troff | Tads3Lexer
Matt Mackall
tests: replace exit 80 with #require
r22046 #require serve
Angel Ezquerra
extensions: obsolete and remove interhg extension...
r18629
$ hg init test
$ cd test
$ cat > .hg/hgrc <<EOF
> [extensions]
> # this is only necessary to check that the mapping from
> # interhg to websub works
> interhg =
>
> [websub]
> issues = s|Issue(\d+)|<a href="http://bts.example.org/issue\1">Issue\1</a>|
Connor Sheehan
hgweb: fix websub regex flag syntax on Python 3...
r43189 > tickets = s|ticket(\d+)|<a href="http://ticket.example.org/issue\1">Ticket\1</a>|i
Angel Ezquerra
extensions: obsolete and remove interhg extension...
r18629 >
> [interhg]
> # check that we maintain some interhg backwards compatibility...
> # yes, 'x' is a weird delimiter...
> markbugs = sxbugx<i class="\x">bug</i>x
Connor Sheehan
hgweb: fix websub regex flag syntax on Python 3...
r43189 > problems = sxPROBLEMx<i class="\x">problem</i>xi
Angel Ezquerra
extensions: obsolete and remove interhg extension...
r18629 > EOF
$ touch foo
$ hg add foo
Connor Sheehan
hgweb: fix websub regex flag syntax on Python 3...
r43189 $ hg commit -d '1 0' -m 'Issue123: fixed the bug! Ticket456 and problem789 too'
Angel Ezquerra
extensions: obsolete and remove interhg extension...
r18629
$ hg serve -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log
$ cat hg.pid >> $DAEMON_PIDS
log
Matt Mackall
tests: drop explicit $TESTDIR from executables...
r25472 $ get-with-headers.py localhost:$HGPORT "rev/tip" | grep bts
Connor Sheehan
hgweb: fix websub regex flag syntax on Python 3...
r43189 <div class="description"><a href="http://bts.example.org/issue123">Issue123</a>: fixed the <i class="x">bug</i>! <a href="http://ticket.example.org/issue456">Ticket456</a> and <i class="x">problem</i>789 too</div>
Angel Ezquerra
extensions: obsolete and remove interhg extension...
r18629 errors
$ cat errors.log
$ cd ..