diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2021-08-22 03:18:03 +0200 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2021-08-22 03:18:03 +0200 |
commit | 387fb72ee084aca883b35d37d177958715bffab0 (patch) | |
tree | a203233340481b87dc9690bf8bb3cebea1cbb9c7 /test/bug/Makefile | |
parent | added i386 (diff) | |
download | sear.c-387fb72ee084aca883b35d37d177958715bffab0.tar sear.c-387fb72ee084aca883b35d37d177958715bffab0.tar.gz sear.c-387fb72ee084aca883b35d37d177958715bffab0.tar.bz2 sear.c-387fb72ee084aca883b35d37d177958715bffab0.tar.lz sear.c-387fb72ee084aca883b35d37d177958715bffab0.tar.xz sear.c-387fb72ee084aca883b35d37d177958715bffab0.tar.zst sear.c-387fb72ee084aca883b35d37d177958715bffab0.zip |
Diffstat (limited to 'test/bug/Makefile')
-rw-r--r-- | test/bug/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/bug/Makefile b/test/bug/Makefile new file mode 100644 index 0000000..88dfd75 --- /dev/null +++ b/test/bug/Makefile @@ -0,0 +1,6 @@ +default: + curl -H "User-Agent: Nokia WAP Gateway 4.1 CD1/ECD13_D/4.1.04)" "http://wap.google.com/search?q=libxml2&num=100&ie=UTF-8" > s.html + gcc -Wall -pedantic -g prog.c $$(xml2-config --cflags --libs) + +valgrind: + valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind-out.txt ./a.out s.html |