Changeset 144fafd in mainline for uspace/lib


Ignore:
Timestamp:
2025-11-30T22:01:59Z (5 days ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Parents:
1ec732a
Message:

Add new unit tests to Navigator and libfmgt.

Location:
uspace/lib/fmgt
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/fmgt/include/fmgt.h

    r1ec732a r144fafd  
    4545#include "fmgt/newfile.h"
    4646#include "fmgt/verify.h"
     47#include "fmgt/walk.h"
    4748#include "types/fmgt.h"
    4849
  • uspace/lib/fmgt/meson.build

    r1ec732a r144fafd  
    3636
    3737test_src = files(
     38        'test/flist.c',
    3839        'test/fmgt.c',
    3940        'test/main.c',
    40         'test/newfile.c'
     41        'test/newfile.c',
     42        'test/verify.c',
     43        'test/walk.c'
    4144)
  • uspace/lib/fmgt/test/fmgt.c

    r1ec732a r144fafd  
    2929#include <fmgt.h>
    3030#include <pcut/pcut.h>
    31 #include <stdio.h>
    32 #include <str.h>
    33 #include <vfs/vfs.h>
    3431
    3532PCUT_INIT;
  • uspace/lib/fmgt/test/main.c

    r1ec732a r144fafd  
    3131PCUT_INIT;
    3232
     33PCUT_IMPORT(flist);
    3334PCUT_IMPORT(fmgt);
    3435PCUT_IMPORT(newfile);
     36PCUT_IMPORT(verify);
     37PCUT_IMPORT(walk);
    3538
    3639PCUT_MAIN();
Note: See TracChangeset for help on using the changeset viewer.