- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / test / clib / mnt_names.c
blobe2d78b127ba8415b95b395d8f46302eaf5d002a0
1 #include <proto/dos.h>
2 #include <dos/dos.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include <unistd.h>
7 #include <sys/fs_types.h> /* mnt_names is defined here */
8 #include "test.h"
10 int main()
12 TEST(strcmp(mnt_names[MOUNT_NONE], "none") == 0);
13 TEST(strcmp(mnt_names[MOUNT_UFS], "ufs") == 0);
14 TEST(strcmp(mnt_names[MOUNT_NFS], "nfs") == 0);
15 TEST(strcmp(mnt_names[MOUNT_MFS], "mfs") == 0);
16 TEST(strcmp(mnt_names[MOUNT_PC], "pc") == 0);
17 TEST(strcmp(mnt_names[MOUNT_ADOS_OFS], "ofs") == 0);
18 TEST(strcmp(mnt_names[MOUNT_ADOS_FFS], "ffs") == 0);
19 TEST(strcmp(mnt_names[MOUNT_ADOS_IOFS], "iofs") == 0);
20 TEST(strcmp(mnt_names[MOUNT_ADOS_IFFS], "iffs") == 0);
22 return OK;
25 void cleanup()