netsurf/test
Vincent Sanders 75018632a9 Use coccinelle to change logging macro calls in c files
for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done

@@ expression E; @@
-LOG(E);
+NSLOG(netsurf, INFO, E);
@@ expression E, E1; @@
-LOG(E, E1);
+NSLOG(netsurf, INFO, E, E1);
@@ expression E, E1, E2; @@
-LOG(E, E1, E2);
+NSLOG(netsurf, INFO, E, E1, E2);
@@ expression E, E1, E2, E3; @@
-LOG(E, E1, E2, E3);
+NSLOG(netsurf, INFO, E, E1, E2, E3);
@@ expression E, E1, E2, E3, E4; @@
-LOG(E, E1, E2, E3, E4);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4);
@@ expression E, E1, E2, E3, E4, E5; @@
-LOG(E, E1, E2, E3, E4, E5);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5);
@@ expression E, E1, E2, E3, E4, E5, E6; @@
-LOG(E, E1, E2, E3, E4, E5, E6);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6);
@@ expression E, E1, E2, E3, E4, E5, E6, E7; @@
-LOG(E, E1, E2, E3, E4, E5, E6, E7);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
2017-09-06 18:45:27 +01:00
..
data update cookie database tests to not use expired cookie data 2017-07-26 09:17:57 +01:00
js Add dom change event test 2017-02-05 12:39:50 +00:00
assert.c Support coverage flushing on assert() 2017-03-31 18:53:52 +01:00
bloom.c add bloom filter test for adding NULL string 2016-08-14 23:32:20 +01:00
corestrings.c fix number of corestrings to test 2017-07-26 09:32:35 +01:00
hashtable.c Ensure hash table test doesn't go over-time 2017-02-05 11:57:26 +00:00
llcache.c move tree compatability layer to amiga frontend 2016-12-31 01:04:27 +00:00
log.c use nslog library for logging if available. 2017-09-03 23:40:32 +01:00
Makefile Tests: Squash warning: "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE". 2017-08-28 11:15:06 +01:00
malloc_fig.c Add heap fault injection generator into tests 2017-03-22 08:56:24 +00:00
malloc_fig.h Add heap fault injection generator into tests 2017-03-22 08:56:24 +00:00
message_data_inline.h add unit test for user message handling 2016-08-06 23:43:23 +01:00
messages.c Errorcodes: Remove redundant MNG error. 2017-08-28 11:11:40 +01:00
mimesniff.c fix mime sniff test with comment tag 2017-03-20 23:39:15 +00:00
nsoption.c replace tmpnam with something more suitable for the test files 2017-03-09 22:11:55 +00:00
nsurl.c Tests: Increase nsurl coverage. 2017-03-27 17:55:48 +01:00
testament.h make nsurl unit test work again 2015-07-07 00:05:30 +01:00
time.c Test: Add trailing whitespace and garbage datetime string parse tests. 2016-08-17 09:11:02 +01:00
urldbtest.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
urlescape.c Fix warnings in unit tests 2016-08-08 22:12:16 +01:00
utils.c add additional string handling tests 2017-03-14 23:07:26 +00:00