Changeset 144fafd in mainline
- Timestamp:
- 2025-11-30T22:01:59Z (3 days ago)
- Branches:
- master
- Parents:
- 1ec732a
- Location:
- uspace
- Files:
-
- 7 added
- 6 edited
-
app/nav/meson.build (modified) (1 diff)
-
app/nav/test/dlg/ioerrdlg.c (added)
-
app/nav/test/dlg/newfiledlg.c (added)
-
app/nav/test/dlg/progress.c (added)
-
app/nav/test/dlg/verifydlg.c (added)
-
app/nav/test/main.c (modified) (2 diffs)
-
lib/fmgt/include/fmgt.h (modified) (1 diff)
-
lib/fmgt/meson.build (modified) (1 diff)
-
lib/fmgt/test/flist.c (added)
-
lib/fmgt/test/fmgt.c (modified) (1 diff)
-
lib/fmgt/test/main.c (modified) (1 diff)
-
lib/fmgt/test/verify.c (added)
-
lib/fmgt/test/walk.c (added)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/nav/meson.build
r1ec732a r144fafd 51 51 'panel.c', 52 52 'verify.c', 53 'test/dlg/ioerrdlg.c', 54 'test/dlg/newfiledlg.c', 55 'test/dlg/progress.c', 56 'test/dlg/verifydlg.c', 53 57 'test/main.c', 54 58 'test/menu.c', -
uspace/app/nav/test/main.c
r1ec732a r144fafd 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 31 31 PCUT_INIT; 32 32 33 PCUT_IMPORT(ioerrdlg); 34 PCUT_IMPORT(newfiledlg); 35 PCUT_IMPORT(progress); 36 PCUT_IMPORT(verifydlg); 33 37 PCUT_IMPORT(menu); 34 38 PCUT_IMPORT(nav); -
uspace/lib/fmgt/include/fmgt.h
r1ec732a r144fafd 45 45 #include "fmgt/newfile.h" 46 46 #include "fmgt/verify.h" 47 #include "fmgt/walk.h" 47 48 #include "types/fmgt.h" 48 49 -
uspace/lib/fmgt/meson.build
r1ec732a r144fafd 36 36 37 37 test_src = files( 38 'test/flist.c', 38 39 'test/fmgt.c', 39 40 'test/main.c', 40 'test/newfile.c' 41 'test/newfile.c', 42 'test/verify.c', 43 'test/walk.c' 41 44 ) -
uspace/lib/fmgt/test/fmgt.c
r1ec732a r144fafd 29 29 #include <fmgt.h> 30 30 #include <pcut/pcut.h> 31 #include <stdio.h>32 #include <str.h>33 #include <vfs/vfs.h>34 31 35 32 PCUT_INIT; -
uspace/lib/fmgt/test/main.c
r1ec732a r144fafd 31 31 PCUT_INIT; 32 32 33 PCUT_IMPORT(flist); 33 34 PCUT_IMPORT(fmgt); 34 35 PCUT_IMPORT(newfile); 36 PCUT_IMPORT(verify); 37 PCUT_IMPORT(walk); 35 38 36 39 PCUT_MAIN();
Note:
See TracChangeset
for help on using the changeset viewer.
