Changeset 144fafd in mainline


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

Add new unit tests to Navigator and libfmgt.

Location:
uspace
Files:
7 added
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/nav/meson.build

    r1ec732a r144fafd  
    5151        'panel.c',
    5252        'verify.c',
     53        'test/dlg/ioerrdlg.c',
     54        'test/dlg/newfiledlg.c',
     55        'test/dlg/progress.c',
     56        'test/dlg/verifydlg.c',
    5357        'test/main.c',
    5458        'test/menu.c',
  • uspace/app/nav/test/main.c

    r1ec732a r144fafd  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
     2 * Copyright (c) 2025 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3131PCUT_INIT;
    3232
     33PCUT_IMPORT(ioerrdlg);
     34PCUT_IMPORT(newfiledlg);
     35PCUT_IMPORT(progress);
     36PCUT_IMPORT(verifydlg);
    3337PCUT_IMPORT(menu);
    3438PCUT_IMPORT(nav);
  • 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.