Added the fs-shell testing suite for the iso9660 file system (iso9660_shell).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2969 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
db94ee0595
commit
5f16032b01
@ -2,3 +2,4 @@ SubDir OBOS_TOP src tests add-ons kernel file_systems ;
|
||||
|
||||
SubInclude OBOS_TOP src tests add-ons kernel file_systems befs ;
|
||||
SubInclude OBOS_TOP src tests add-ons kernel file_systems bfs ;
|
||||
SubInclude OBOS_TOP src tests add-ons kernel file_systems iso9660 ;
|
||||
|
3
src/tests/add-ons/kernel/file_systems/iso9660/Jamfile
Normal file
3
src/tests/add-ons/kernel/file_systems/iso9660/Jamfile
Normal file
@ -0,0 +1,3 @@
|
||||
SubDir OBOS_TOP src tests add-ons kernel file_systems iso9660 ;
|
||||
|
||||
SubInclude OBOS_TOP src tests add-ons kernel file_systems iso9660 iso9660_shell ;
|
@ -0,0 +1,28 @@
|
||||
SubDir OBOS_TOP src tests add-ons kernel file_systems iso9660 iso9660_shell ;
|
||||
|
||||
SubDirHdrs $(OBOS_TOP) src add-ons kernel file_systems iso9660 ;
|
||||
SubDirHdrs $(OBOS_TOP) src tests add-ons kernel file_systems fs_shell ;
|
||||
|
||||
{
|
||||
local defines = [ FDefines USER DEBUG ] ; # _NO_INLINE_ASM
|
||||
SubDirCcFlags $(defines) -fno-exceptions -fno-rtti ; #-fcheck-memory-usage
|
||||
}
|
||||
|
||||
SimpleTest iso9660_shell
|
||||
:
|
||||
fsh.c rootfs.c initfs.c kernel.c cache.c sl.c stub.c
|
||||
sysdep.c hexdump.c argv.c
|
||||
|
||||
iso.c kernel_interface.c
|
||||
:
|
||||
;
|
||||
|
||||
# Tell Jam where to find these sources
|
||||
SEARCH on [ FGristFiles
|
||||
iso.c kernel_interface.c
|
||||
] = [ FDirName $(OBOS_TOP) src add-ons kernel file_systems iso9660 ] ;
|
||||
|
||||
SEARCH on [ FGristFiles
|
||||
fsh.c rootfs.c initfs.c kernel.c cache.c sl.c stub.c
|
||||
sysdep.c hexdump.c argv.c
|
||||
] = [ FDirName $(OBOS_TOP) src tests add-ons kernel file_systems fs_shell ] ;
|
@ -0,0 +1,12 @@
|
||||
/* This file is included in fs_shell:fsh.c
|
||||
* Insert your implementation of additional commands in here
|
||||
*
|
||||
* Format:
|
||||
*
|
||||
* static void
|
||||
* function(int argc, char **argv)
|
||||
* {
|
||||
* }
|
||||
*
|
||||
*/
|
||||
|
@ -0,0 +1,9 @@
|
||||
/* This file is included in fs_shell:fsh.c
|
||||
* Insert your definition of additional commands here
|
||||
*
|
||||
* Format:
|
||||
* { commandName, functionName, commandDescription },
|
||||
*
|
||||
* And don't forget the comma after the line :-)
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user