Mercurial > hg
view contrib/fuzz/Makefile @ 35929:5f029d03cf71
debugcommands: introduce debugpeer command
`hg debugpeer <path>` will establish a connection to a peer repository
and print information about it.
If you add --debug, it will log low-level protocol request info. This
will be useful for upcoming tests around protocol handshaking.
Differential Revision: https://phab.mercurial-scm.org/D2025
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 03 Feb 2018 12:01:01 -0800 |
parents | 2b9e2415f5b5 |
children | 624cbd1477a6 |
line wrap: on
line source
bdiff.o: ../../mercurial/bdiff.c clang -g -O1 -fsanitize=fuzzer-no-link,address -c -o bdiff.o \ ../../mercurial/bdiff.c bdiff: bdiff.cc bdiff.o clang -DHG_FUZZER_INCLUDE_MAIN=1 -g -O1 -fsanitize=fuzzer-no-link,address \ -I../../mercurial bdiff.cc bdiff.o -o bdiff bdiff-oss-fuzz.o: ../../mercurial/bdiff.c $$CC $$CFLAGS -c -o bdiff-oss-fuzz.o ../../mercurial/bdiff.c bdiff_fuzzer: bdiff.cc bdiff-oss-fuzz.o $$CXX $$CXXFLAGS -std=c++11 -I../../mercurial bdiff.cc \ bdiff-oss-fuzz.o -lFuzzingEngine -o $$OUT/bdiff_fuzzer all: bdiff oss-fuzz: bdiff_fuzzer .PHONY: all oss-fuzz