diff --git a/src/backend/backend.c b/src/backend/backend.c index 87b8ee42d..02b959f21 100644 --- a/src/backend/backend.c +++ b/src/backend/backend.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file backend.c + ** TODO backend.c + */ + + #include "include/logging.h" #include "lib/safeclib.h" #include "lib/tmpbuf.h" diff --git a/src/backend/backend.h b/src/backend/backend.h index e8b5f7b7b..a02613c34 100644 --- a/src/backend/backend.h +++ b/src/backend/backend.h @@ -21,6 +21,11 @@ */ +/** @file backend.h + ** TODO backend.h + */ + + #ifndef BACKEND_BACKEND_H #define BACKEND_BACKEND_H diff --git a/src/backend/engine/engine-config.h b/src/backend/engine/engine-config.h index 15459ef10..b85a84b31 100644 --- a/src/backend/engine/engine-config.h +++ b/src/backend/engine/engine-config.h @@ -21,6 +21,11 @@ */ +/** @file engine-config.h + ** TODO engine-config.h + */ + + #ifndef BACKEND_ENGINE_ENGINE_CONFIG_H #define BACKEND_ENGINE_ENGINE_CONFIG_H diff --git a/src/backend/file-handling.c b/src/backend/file-handling.c index df5326ded..beadd1b8f 100644 --- a/src/backend/file-handling.c +++ b/src/backend/file-handling.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file file-handling.c + ** TODO file-handling.c + */ + + #include "include/logging.h" #include "lib/mutex.h" #include "lib/safeclib.h" diff --git a/src/backend/filedescriptor.c b/src/backend/filedescriptor.c index b7320bf1c..c24847ca9 100644 --- a/src/backend/filedescriptor.c +++ b/src/backend/filedescriptor.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file filedescriptor.c + ** TODO filedescriptor.c + */ + + #include "include/logging.h" #include "lib/mutex.h" #include "lib/safeclib.h" diff --git a/src/backend/filedescriptorregistry.c b/src/backend/filedescriptorregistry.c index 9f7100de9..b9eb74657 100644 --- a/src/backend/filedescriptorregistry.c +++ b/src/backend/filedescriptorregistry.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file filedescriptorregistry.c + ** TODO filedescriptorregistry.c + */ + + #include "include/logging.h" #include "lib/safeclib.h" #include "lib/mutex.h" diff --git a/src/backend/filehandle.c b/src/backend/filehandle.c index 4f17f295a..61fa6699a 100644 --- a/src/backend/filehandle.c +++ b/src/backend/filehandle.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file filehandle.c + ** TODO filehandle.c + */ + + #include "include/logging.h" #include "lib/llist.h" #include "lib/safeclib.h" diff --git a/src/backend/filehandlecache.c b/src/backend/filehandlecache.c index b45bdf42c..7adc70664 100644 --- a/src/backend/filehandlecache.c +++ b/src/backend/filehandlecache.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file filehandlecache.c + ** TODO filehandlecache.c + */ + + #include "include/logging.h" #include "lib/safeclib.h" diff --git a/src/backend/fileheader.c b/src/backend/fileheader.c index c248acded..4df93a0f5 100644 --- a/src/backend/fileheader.c +++ b/src/backend/fileheader.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file fileheader.c + ** TODO fileheader.c + */ + + #include "lib/tmpbuf.h" #include "backend/fileheader.h" diff --git a/src/backend/mmap.c b/src/backend/mmap.c index 16d4f5328..d5950fe90 100644 --- a/src/backend/mmap.c +++ b/src/backend/mmap.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file mmap.c + ** TODO mmap.c + */ + + #include "include/logging.h" #include "lib/safeclib.h" diff --git a/src/backend/mmapcache.c b/src/backend/mmapcache.c index 4c6e6d247..4b6c8f99b 100644 --- a/src/backend/mmapcache.c +++ b/src/backend/mmapcache.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file mmapcache.c + ** TODO mmapcache.c + */ + + #include "include/logging.h" #include "lib/safeclib.h" diff --git a/src/backend/mmapings.c b/src/backend/mmapings.c index fe648362c..8aab635b5 100644 --- a/src/backend/mmapings.c +++ b/src/backend/mmapings.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file mmapings.c + ** TODO mmapings.c + */ + + #include "include/logging.h" #include "lib/mutex.h" #include "lib/safeclib.h" diff --git a/src/backend/resourcecollector.c b/src/backend/resourcecollector.c index 1dccc5e5e..48528977b 100644 --- a/src/backend/resourcecollector.c +++ b/src/backend/resourcecollector.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file resourcecollector.c + ** TODO resourcecollector.c + */ + + #include "include/logging.h" #include "lib/llist.h" #include "lib/mutex.h" diff --git a/src/backend/resourcecollector.h b/src/backend/resourcecollector.h index b428bdc8c..af2a6665b 100644 --- a/src/backend/resourcecollector.h +++ b/src/backend/resourcecollector.h @@ -21,6 +21,11 @@ */ +/** @file resourcecollector.h + ** TODO resourcecollector.h + */ + + #ifndef BACKEND_RESOURCECOLLECTOR_H #define BACKEND_RESOURCECOLLECTOR_H diff --git a/src/backend/threadpool.c b/src/backend/threadpool.c index ea01d5e46..16c43e645 100644 --- a/src/backend/threadpool.c +++ b/src/backend/threadpool.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file threadpool.c + ** TODO threadpool.c + */ + + #include "include/logging.h" #include "lib/safeclib.h" #include "backend/threadpool.h" diff --git a/src/backend/threadpool.h b/src/backend/threadpool.h index 509205ac1..caecfd9db 100644 --- a/src/backend/threadpool.h +++ b/src/backend/threadpool.h @@ -21,6 +21,11 @@ */ +/** @file threadpool.h + ** TODO threadpool.h + */ + + #ifndef BACKEND_THREADPOOL_H #define BACKEND_THREADPOOL_H diff --git a/src/backend/threads.c b/src/backend/threads.c index 811c99a64..46ad5083d 100644 --- a/src/backend/threads.c +++ b/src/backend/threads.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file threads.c + ** TODO threads.c + */ + + #include "include/logging.h" #include "lib/safeclib.h" #include "backend/threads.h" diff --git a/src/backend/threads.h b/src/backend/threads.h index 8dc40441e..454328ff5 100644 --- a/src/backend/threads.h +++ b/src/backend/threads.h @@ -21,6 +21,11 @@ */ +/** @file threads.h + ** TODO threads.h + */ + + #ifndef BACKEND_THREADS_H #define BACKEND_THREADS_H diff --git a/src/common/config-interface.c b/src/common/config-interface.c index 1f0abb1a9..e2bbcd48c 100644 --- a/src/common/config-interface.c +++ b/src/common/config-interface.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file config-interface.c + ** TODO config-interface.c + */ + + #include "common/config-interface.h" #include "common/config.h" diff --git a/src/common/config-wordlist.c b/src/common/config-wordlist.c index 245119686..2bc21f967 100644 --- a/src/common/config-wordlist.c +++ b/src/common/config-wordlist.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file config-wordlist.c + ** TODO config-wordlist.c + */ + + #include "include/logging.h" #include "lib/error.h" #include "lib/tmpbuf.h" diff --git a/src/common/config.c b/src/common/config.c index 15601eaf5..7d70d255e 100644 --- a/src/common/config.c +++ b/src/common/config.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file config.c + ** TODO config.c + */ + + #include "include/logging.h" #include "lib/safeclib.h" #include "lib/tmpbuf.h" diff --git a/src/common/configentry.c b/src/common/configentry.c index 11437ccf9..18336d9fe 100644 --- a/src/common/configentry.c +++ b/src/common/configentry.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file configentry.c + ** TODO configentry.c + */ + + #include "lib/safeclib.h" #include "common/configentry.h" diff --git a/src/common/configentry.h b/src/common/configentry.h index 58ea04691..066119148 100644 --- a/src/common/configentry.h +++ b/src/common/configentry.h @@ -21,6 +21,11 @@ */ +/** @file configentry.h + ** TODO configentry.h + */ + + #ifndef COMMON_CONFIGENTRY_H #define COMMON_CONFIGENTRY_H diff --git a/src/common/interface-descriptor.h b/src/common/interface-descriptor.h index 7be369a17..68babf6f5 100644 --- a/src/common/interface-descriptor.h +++ b/src/common/interface-descriptor.h @@ -21,6 +21,11 @@ */ +/** @file interface-descriptor.h + ** TODO interface-descriptor.h + */ + + #ifndef COMMON_INTERFACEDESCRIPTOR_H #define COMMON_INTERFACEDESCRIPTOR_H diff --git a/src/include/dummy-player-facade.h b/src/include/dummy-player-facade.h index ed59818c4..86aa55cd7 100644 --- a/src/include/dummy-player-facade.h +++ b/src/include/dummy-player-facade.h @@ -21,6 +21,11 @@ */ +/** @file dummy-player-facade.h + ** TODO dummy-player-facade.h + */ + + #ifndef PROC_INTERFACE_DUMMYPLAYER_H #define PROC_INTERFACE_DUMMYPLAYER_H diff --git a/src/include/play-facade.h b/src/include/play-facade.h index fced03316..0fc39066a 100644 --- a/src/include/play-facade.h +++ b/src/include/play-facade.h @@ -21,6 +21,11 @@ */ +/** @file play-facade.h + ** TODO play-facade.h + */ + + #ifndef PROC_INTERFACE_PLAY_H #define PROC_INTERFACE_PLAY_H diff --git a/src/lib/hash-fnv.c b/src/lib/hash-fnv.c index 8f932400a..9dae835d9 100644 --- a/src/lib/hash-fnv.c +++ b/src/lib/hash-fnv.c @@ -22,6 +22,11 @@ * *****************************************************/ +/** @file hash-fnv.c + ** TODO hash-fnv.c + */ + + #include "lib/hash-fnv.h" #include diff --git a/src/lib/lockerror.c b/src/lib/lockerror.c index 3295eff52..f78e6af09 100644 --- a/src/lib/lockerror.c +++ b/src/lib/lockerror.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file lockerror.c + ** TODO lockerror.c + */ + + #include "lib/lockerror.h" #include diff --git a/src/lib/lockerror.h b/src/lib/lockerror.h index 3c5293272..295a332e9 100644 --- a/src/lib/lockerror.h +++ b/src/lib/lockerror.h @@ -19,6 +19,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/** @file lockerror.h + ** TODO lockerror.h + */ + #ifndef LUMIERA_LOCKERRORS_H #define LUMIERA_LOCKERRORS_H diff --git a/src/lib/luid.c b/src/lib/luid.c index d907060cb..a3cc11014 100644 --- a/src/lib/luid.c +++ b/src/lib/luid.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file luid.c + ** TODO luid.c + */ + + #include "lib/luid.h" #include diff --git a/src/lib/mpool.c b/src/lib/mpool.c index 724521c6f..469305037 100644 --- a/src/lib/mpool.c +++ b/src/lib/mpool.c @@ -19,6 +19,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/** @file mpool.c + ** TODO mpool.c + */ + #include #include #include diff --git a/src/lib/mpool.h b/src/lib/mpool.h index b59ea2b58..bb7ddf184 100644 --- a/src/lib/mpool.h +++ b/src/lib/mpool.h @@ -19,6 +19,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/** @file mpool.h + ** TODO mpool.h + */ + #include #include #include "lib/llist.h" diff --git a/src/lib/mrucache.c b/src/lib/mrucache.c index 272d66a3e..7eacc8339 100644 --- a/src/lib/mrucache.c +++ b/src/lib/mrucache.c @@ -19,6 +19,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/** @file mrucache.c + ** TODO mrucache.c + */ + #include "lib/safeclib.h" #include "lib/mrucache.h" diff --git a/src/lib/priqueue.c b/src/lib/priqueue.c index ab667047d..10b79d6bc 100644 --- a/src/lib/priqueue.c +++ b/src/lib/priqueue.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file priqueue.c + ** TODO priqueue.c + */ + + #include "lib/priqueue.h" #include "include/logging.h" diff --git a/src/lib/psplay.c b/src/lib/psplay.c index e28840476..ae154a232 100644 --- a/src/lib/psplay.c +++ b/src/lib/psplay.c @@ -21,6 +21,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/** @file psplay.c + ** TODO psplay.c + */ + #include "include/logging.h" #include "lib/psplay.h" diff --git a/src/lib/safeclib.c b/src/lib/safeclib.c index 980353273..8dc295956 100644 --- a/src/lib/safeclib.c +++ b/src/lib/safeclib.c @@ -18,6 +18,11 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + + +/** @file safeclib.c + ** TODO safeclib.c + */ #include "lib/error.h" #include "lib/safeclib.h" diff --git a/src/lib/sectionlock.h b/src/lib/sectionlock.h index 0eb6cd93b..28245029d 100644 --- a/src/lib/sectionlock.h +++ b/src/lib/sectionlock.h @@ -19,6 +19,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/** @file sectionlock.h + ** TODO sectionlock.h + */ + #ifndef LUMIERA_SECTIONLOCK_H #define LUMIERA_SECTIONLOCK_H diff --git a/src/lib/tmpbuf.c b/src/lib/tmpbuf.c index 46e42174a..59bb180f6 100644 --- a/src/lib/tmpbuf.c +++ b/src/lib/tmpbuf.c @@ -18,6 +18,11 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + + +/** @file tmpbuf.c + ** TODO tmpbuf.c + */ #include "lib/safeclib.h" #include "lib/tmpbuf.h" diff --git a/src/tool/alsa.c b/src/tool/alsa.c index 68969f49a..738a95a8e 100644 --- a/src/tool/alsa.c +++ b/src/tool/alsa.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file alsa.c + ** TODO alsa.c + */ + + #include "alsa.h" #include diff --git a/src/tool/hello.c b/src/tool/hello.c index 43b3c3291..6de1b0003 100644 --- a/src/tool/hello.c +++ b/src/tool/hello.c @@ -3,6 +3,11 @@ * integrated into the SCons based build system of Lumiera */ + +/** @file hello.c + ** TODO hello.c + */ + #include int diff --git a/src/tool/main.c b/src/tool/main.c index 86a027b41..7887362c8 100644 --- a/src/tool/main.c +++ b/src/tool/main.c @@ -21,6 +21,11 @@ * *****************************************************/ +/** @file main.c + ** TODO main.c + */ + + #include "alsa.h" #include diff --git a/src/tool/rsvg-convert.c b/src/tool/rsvg-convert.c index eee28cc07..46a21dc78 100644 --- a/src/tool/rsvg-convert.c +++ b/src/tool/rsvg-convert.c @@ -24,6 +24,11 @@ * *****************************************************/ +/** @file rsvg-convert.c + ** TODO rsvg-convert.c + */ + + #ifndef N_ #define N_(X) X #endif diff --git a/tests/backend/test-filedescriptors.c b/tests/backend/test-filedescriptors.c index 11fb41390..5f03995e1 100644 --- a/tests/backend/test-filedescriptors.c +++ b/tests/backend/test-filedescriptors.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/safeclib.h" diff --git a/tests/backend/test-filehandles.c b/tests/backend/test-filehandles.c index 9abc38fad..57b113984 100644 --- a/tests/backend/test-filehandles.c +++ b/tests/backend/test-filehandles.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/llist.h" #include "lib/tmpbuf.h" diff --git a/tests/backend/test-fileheader.c b/tests/backend/test-fileheader.c index 960680602..7af584673 100644 --- a/tests/backend/test-fileheader.c +++ b/tests/backend/test-fileheader.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "backend/backend.h" #include "backend/fileheader.h" diff --git a/tests/backend/test-filemmap.c b/tests/backend/test-filemmap.c index 31abae0f9..977401aed 100644 --- a/tests/backend/test-filemmap.c +++ b/tests/backend/test-filemmap.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + //#include //#include diff --git a/tests/backend/test-resourcecollector.c b/tests/backend/test-resourcecollector.c index b6809cf07..583ca132d 100644 --- a/tests/backend/test-resourcecollector.c +++ b/tests/backend/test-resourcecollector.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "backend/resourcecollector.h" diff --git a/tests/backend/test-threadpool.c b/tests/backend/test-threadpool.c index 807dc1d66..da329ed69 100644 --- a/tests/backend/test-threadpool.c +++ b/tests/backend/test-threadpool.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/test/test.h" diff --git a/tests/backend/test-threads.c b/tests/backend/test-threads.c index 23de08ec3..6598c29e5 100644 --- a/tests/backend/test-threads.c +++ b/tests/backend/test-threads.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + //#include //#include diff --git a/tests/core/application/test-configloader.c b/tests/core/application/test-configloader.c index 9af8b7b18..1ef7c2c7f 100644 --- a/tests/core/application/test-configloader.c +++ b/tests/core/application/test-configloader.c @@ -21,6 +21,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/tmpbuf.h" diff --git a/tests/core/application/test-interfaces.c b/tests/core/application/test-interfaces.c index c6cefe06f..b24b9738a 100644 --- a/tests/core/application/test-interfaces.c +++ b/tests/core/application/test-interfaces.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "common/interface.h" #include "common/interfaceregistry.h" diff --git a/tests/include/interface/say_hello.h b/tests/include/interface/say_hello.h index 8155879c4..d9696e57b 100644 --- a/tests/include/interface/say_hello.h +++ b/tests/include/interface/say_hello.h @@ -3,6 +3,10 @@ /* one interface which can greet in different languages */ + +/** @file §§§ + ** unit test TODO §§§ + */ LUMIERA_INTERFACE_DECLARE (lumieraorg_testhello, 0, LUMIERA_INTERFACE_SLOT (void, hello, (void)), LUMIERA_INTERFACE_SLOT (void, goodbye, (const char*)), diff --git a/tests/library/c-lib/test-errorstate.c b/tests/library/c-lib/test-errorstate.c index b936c1d30..1b9a54ec8 100644 --- a/tests/library/c-lib/test-errorstate.c +++ b/tests/library/c-lib/test-errorstate.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include #include diff --git a/tests/library/c-lib/test-llist.c b/tests/library/c-lib/test-llist.c index 85162e608..26fce3751 100644 --- a/tests/library/c-lib/test-llist.c +++ b/tests/library/c-lib/test-llist.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include diff --git a/tests/library/c-lib/test-locking.c b/tests/library/c-lib/test-locking.c index c883dc2ff..5c4da0538 100644 --- a/tests/library/c-lib/test-locking.c +++ b/tests/library/c-lib/test-locking.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/test/test.h" #include "lib/mutex.h" diff --git a/tests/library/c-lib/test-luid.c b/tests/library/c-lib/test-luid.c index f2902c74b..d87809168 100644 --- a/tests/library/c-lib/test-luid.c +++ b/tests/library/c-lib/test-luid.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/luid.h" diff --git a/tests/library/c-lib/test-mpool.c b/tests/library/c-lib/test-mpool.c index 5667a2506..09331ad0b 100644 --- a/tests/library/c-lib/test-mpool.c +++ b/tests/library/c-lib/test-mpool.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/test/test.h" #include "lib/mpool.h" diff --git a/tests/library/c-lib/test-priqueue.c b/tests/library/c-lib/test-priqueue.c index bc6459c15..46589264f 100644 --- a/tests/library/c-lib/test-priqueue.c +++ b/tests/library/c-lib/test-priqueue.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/test/test.h" #include "lib/priqueue.h" diff --git a/tests/library/c-lib/test-psplay.c b/tests/library/c-lib/test-psplay.c index dc50bb548..6cae14716 100644 --- a/tests/library/c-lib/test-psplay.c +++ b/tests/library/c-lib/test-psplay.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include #include diff --git a/tests/library/c-lib/test-safeclib.c b/tests/library/c-lib/test-safeclib.c index 63e503b4a..d6a322144 100644 --- a/tests/library/c-lib/test-safeclib.c +++ b/tests/library/c-lib/test-safeclib.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/safeclib.h" #include "lib/tmpbuf.h" /* not factored out yet */ diff --git a/tests/library/c-lib/test-slist.c b/tests/library/c-lib/test-slist.c index b18374194..8b5a8a6a7 100644 --- a/tests/library/c-lib/test-slist.c +++ b/tests/library/c-lib/test-slist.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/slist.h" #include "lib/test/test.h" diff --git a/tests/library/c-lib/test-time.c b/tests/library/c-lib/test-time.c index 67c42c133..02ba321b0 100644 --- a/tests/library/c-lib/test-time.c +++ b/tests/library/c-lib/test-time.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include "lib/test/test.h" #include "lib/time.h" diff --git a/tests/plugin/test-c-plugin/example_plugin.c b/tests/plugin/test-c-plugin/example_plugin.c index 2ac408a7a..d67c80156 100644 --- a/tests/plugin/test-c-plugin/example_plugin.c +++ b/tests/plugin/test-c-plugin/example_plugin.c @@ -20,6 +20,10 @@ * *****************************************************/ +/** @file §§§ + ** unit test TODO §§§ + */ + #include diff --git a/tests/tool/vgsuppression.c b/tests/tool/vgsuppression.c index 852cc3bc4..82f7ff474 100644 --- a/tests/tool/vgsuppression.c +++ b/tests/tool/vgsuppression.c @@ -19,6 +19,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +/** @file §§§ + ** unit test TODO §§§ + */ + /* just place any problematic calls where valgrind whines about in main (with comments please) */