mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Update tests with new filesystem types.
This commit is contained in:
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Adfs : FilesystemTest
|
||||
{
|
||||
public Adfs() : base("Acorn Advanced Disc Filing System") {}
|
||||
public Adfs() : base("adfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems",
|
||||
"Acorn Advanced Disc Filing System");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AFFS;
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public APM() : base("Amiga FFS") {}
|
||||
public APM() : base("affs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Fast File System (APM)");
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace Aaru.Tests.Filesystems.AFFS;
|
||||
[TestFixture, SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public class MBR_RDB : FilesystemTest
|
||||
{
|
||||
public MBR_RDB() : base("Amiga FFS") {}
|
||||
public MBR_RDB() : base("affs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Fast File System (MBR+RDB)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AFFS;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("Amiga FFS") {}
|
||||
public MBR() : base("affs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Fast File System (MBR)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AFFS;
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
{
|
||||
public RDB() : base("Amiga FFS") {}
|
||||
public RDB() : base("affs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Fast File System (RDB)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AFFS;
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
{
|
||||
public Whole() : base("Amiga FFS") {}
|
||||
public Whole() : base("affs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Fast File System");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AFFS2;
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public APM() : base("Amiga FFS2") {}
|
||||
public APM() : base("affs2") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Fast File System 2 (APM)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AFFS2;
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
{
|
||||
public RDB() : base("Amiga FFS2") {}
|
||||
public RDB() : base("affs2") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Fast File System 2 (RDB)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AFS;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("Acer Fast Filesystem") {}
|
||||
public MBR() : base("sysv_r4") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Acer File System (MBR)");
|
||||
public override IFilesystem Plugin => new SysVfs();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AFS;
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
{
|
||||
public Whole() : base("Acer Fast Filesystem") {}
|
||||
public Whole() : base("sysv_r4") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Acer File System");
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace Aaru.Tests.Filesystems.AOFS;
|
||||
[TestFixture, SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public class MBR_RDB : FilesystemTest
|
||||
{
|
||||
public MBR_RDB() : base("Amiga OFS") {}
|
||||
public MBR_RDB() : base("aofs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Old File System (MBR+RDB)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AOFS;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("Amiga OFS") {}
|
||||
public MBR() : base("aofs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Old File System (MBR)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AOFS;
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
{
|
||||
public RDB() : base("Amiga OFS") {}
|
||||
public RDB() : base("aofs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Old File System (RDB)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.AOFS;
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
{
|
||||
public Whole() : base("Amiga OFS") {}
|
||||
public Whole() : base("aofs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Amiga Old File System");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Atheos : FilesystemTest
|
||||
{
|
||||
public Atheos() : base("AtheOS filesystem") {}
|
||||
public Atheos() : base("atheos") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "AtheOS (MBR)");
|
||||
public override IFilesystem Plugin => new AtheOS();
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.BeFS;
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public APM() : base("BeFS") {}
|
||||
public APM() : base("befs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Be File System (APM)");
|
||||
public override IFilesystem Plugin => new Aaru.Filesystems.BeFS();
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.BeFS;
|
||||
[TestFixture]
|
||||
public class GPT : FilesystemTest
|
||||
{
|
||||
public GPT() : base("BeFS") {}
|
||||
public GPT() : base("befs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Be File System (GPT)");
|
||||
public override IFilesystem Plugin => new Aaru.Filesystems.BeFS();
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.BeFS;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("BeFS") {}
|
||||
public MBR() : base("befs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Be File System (MBR)");
|
||||
public override IFilesystem Plugin => new Aaru.Filesystems.BeFS();
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.BeFS;
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
{
|
||||
public Whole() : base("BeFS") {}
|
||||
public Whole() : base("befs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Be File System");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.COHERENT;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("Coherent fs") {}
|
||||
public MBR() : base("coherent") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "COHERENT filesystem (MBR)");
|
||||
public override IFilesystem Plugin => new SysVfs();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.COHERENT;
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
{
|
||||
public Whole() : base("Coherent fs") {}
|
||||
public Whole() : base("coherent") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "COHERENT filesystem");
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture, SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public class AMSDOS : FilesystemTest
|
||||
{
|
||||
public AMSDOS() : base("CP/M") {}
|
||||
public AMSDOS() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "AMSDOS");
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture]
|
||||
public class AmstradCPM : ReadOnlyFilesystemTest
|
||||
{
|
||||
public AmstradCPM() : base("CP/M") {}
|
||||
public AmstradCPM() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "Amstrad CPM");
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture]
|
||||
public class AmstradCPMPlus : FilesystemTest
|
||||
{
|
||||
public AmstradCPMPlus() : base("CP/M") {}
|
||||
public AmstradCPMPlus() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "Amstrad CPM+");
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture]
|
||||
public class Attache : FilesystemTest
|
||||
{
|
||||
public Attache() : base("CP/M") {}
|
||||
public Attache() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "Otrona Attaché");
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture]
|
||||
public class Bondwell : FilesystemTest
|
||||
{
|
||||
public Bondwell() : base("CP/M") {}
|
||||
public Bondwell() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "Bondwell");
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture]
|
||||
public class Excalibur64 : FilesystemTest
|
||||
{
|
||||
public Excalibur64() : base("CP/M") {}
|
||||
public Excalibur64() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "Excalibur 64");
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture, SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public class KayproII : ReadOnlyFilesystemTest
|
||||
{
|
||||
public KayproII() : base("CP/M") {}
|
||||
public KayproII() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "Kaypro II");
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture]
|
||||
public class ParaDOS : FilesystemTest
|
||||
{
|
||||
public ParaDOS() : base("CP/M") {}
|
||||
public ParaDOS() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "ParaDOS");
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture, SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public class Plus3DOS : FilesystemTest
|
||||
{
|
||||
public Plus3DOS() : base("CP/M") {}
|
||||
public Plus3DOS() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "+3DOS");
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture, SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public class ROMDOS : FilesystemTest
|
||||
{
|
||||
public ROMDOS() : base("CP/M") {}
|
||||
public ROMDOS() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "ROMDOS");
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture]
|
||||
public class SharpPersonalCPM : ReadOnlyFilesystemTest
|
||||
{
|
||||
public SharpPersonalCPM() : base("CP/M") {}
|
||||
public SharpPersonalCPM() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "Sharp Personal CPM");
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Aaru.Tests.Filesystems.CPM;
|
||||
[TestFixture]
|
||||
public class XtalDOS : ReadOnlyFilesystemTest
|
||||
{
|
||||
public XtalDOS() : base("CP/M") {}
|
||||
public XtalDOS() : base("cpmfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "CPM", "XtalDOS");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class F2Fs : FilesystemTest
|
||||
{
|
||||
public F2Fs() : base("F2FS filesystem") {}
|
||||
public F2Fs() : base("f2fs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "F2FS");
|
||||
public override IFilesystem Plugin => new F2FS();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT12;
|
||||
[TestFixture]
|
||||
public class APM : ReadOnlyFilesystemTest
|
||||
{
|
||||
public APM() : base("FAT12") {}
|
||||
public APM() : base("fat12") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT12 (APM)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT12;
|
||||
[TestFixture]
|
||||
public class GPT : ReadOnlyFilesystemTest
|
||||
{
|
||||
public GPT() : base("FAT12") {}
|
||||
public GPT() : base("fat12") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT12 (GPT)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT12;
|
||||
[TestFixture]
|
||||
public class Human : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Human() : base("FAT12") {}
|
||||
public Human() : base("fat12") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT12 (Human68K)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT12;
|
||||
[TestFixture]
|
||||
public class MBR : ReadOnlyFilesystemTest
|
||||
{
|
||||
public MBR() : base("FAT12") {}
|
||||
public MBR() : base("fat12") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT12 (MBR)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT12;
|
||||
[TestFixture]
|
||||
public class Whole : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Whole() : base("FAT12") {}
|
||||
public Whole() : base("fat12") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT12");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT16;
|
||||
[TestFixture]
|
||||
public class APM : ReadOnlyFilesystemTest
|
||||
{
|
||||
public APM() : base("FAT16") {}
|
||||
public APM() : base("fat16") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16 (APM)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT16;
|
||||
[TestFixture]
|
||||
public class Atari : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Atari() : base("FAT16") {}
|
||||
public Atari() : base("fat16") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16 (Atari)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT16;
|
||||
[TestFixture]
|
||||
public class GPT : ReadOnlyFilesystemTest
|
||||
{
|
||||
public GPT() : base("FAT16") {}
|
||||
public GPT() : base("fat16") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16 (GPT)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT16;
|
||||
[TestFixture]
|
||||
public class Human : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Human() : base("FAT16") {}
|
||||
public Human() : base("fat16") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16 (Human68K)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT16;
|
||||
[TestFixture]
|
||||
public class MBR : ReadOnlyFilesystemTest
|
||||
{
|
||||
public MBR() : base("FAT16") {}
|
||||
public MBR() : base("fat16") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16 (MBR)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT16;
|
||||
[TestFixture]
|
||||
public class RDB : ReadOnlyFilesystemTest
|
||||
{
|
||||
public RDB() : base("FAT16") {}
|
||||
public RDB() : base("fat16") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16 (RDB)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT16;
|
||||
[TestFixture]
|
||||
public class Whole : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Whole() : base("FAT16") {}
|
||||
public Whole() : base("fat16") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT32;
|
||||
[TestFixture]
|
||||
public class APM : ReadOnlyFilesystemTest
|
||||
{
|
||||
public APM() : base("FAT32") {}
|
||||
public APM() : base("fat32") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT32 (APM)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT32;
|
||||
[TestFixture]
|
||||
public class GPT : ReadOnlyFilesystemTest
|
||||
{
|
||||
public GPT() : base("FAT32") {}
|
||||
public GPT() : base("fat32") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT32 (GPT)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT32;
|
||||
[TestFixture]
|
||||
public class MBR : ReadOnlyFilesystemTest
|
||||
{
|
||||
public MBR() : base("FAT32") {}
|
||||
public MBR() : base("fat32") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT32 (MBR)");
|
||||
public override IFilesystem Plugin => new FAT();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FAT32;
|
||||
[TestFixture]
|
||||
public class Whole : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Whole() : base("FAT32") {}
|
||||
public Whole() : base("fat32") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT32");
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ namespace Aaru.Tests.Filesystems.FATX;
|
||||
[TestFixture]
|
||||
public class Xbox : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Xbox() : base("FATX filesystem") {}
|
||||
public Xbox() : base("fatx") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Xbox FAT16", "le");
|
||||
public override IFilesystem Plugin => new XboxFatPlugin();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.FATX;
|
||||
[TestFixture]
|
||||
public class Xbox360 : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Xbox360() : base("FATX filesystem") {}
|
||||
public Xbox360() : base("fatx") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Xbox FAT16", "be");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Hammer : FilesystemTest
|
||||
{
|
||||
public Hammer() : base("HAMMER") {}
|
||||
public Hammer() : base("hammer") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "HAMMER (MBR)");
|
||||
public override IFilesystem Plugin => new HAMMER();
|
||||
|
||||
@@ -39,7 +39,7 @@ namespace Aaru.Tests.Filesystems.HFSPlus;
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public APM() : base("HFS+") {}
|
||||
public APM() : base("hfsplus") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple HFS+ (APM)");
|
||||
public override IFilesystem Plugin => new AppleHFSPlus();
|
||||
|
||||
@@ -39,7 +39,7 @@ namespace Aaru.Tests.Filesystems.HFSPlus;
|
||||
[TestFixture]
|
||||
public class GPT : FilesystemTest
|
||||
{
|
||||
public GPT() : base("HFS+") {}
|
||||
public GPT() : base("hfsplus") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple HFS+ (GPT)");
|
||||
public override IFilesystem Plugin => new AppleHFSPlus();
|
||||
|
||||
@@ -39,7 +39,7 @@ namespace Aaru.Tests.Filesystems.HFSPlus;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("HFS+") {}
|
||||
public MBR() : base("hfsplus") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple HFS+ (MBR)");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.HFS;
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public APM() : base("HFS") {}
|
||||
public APM() : base("hfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple HFS (APM)");
|
||||
public override IFilesystem Plugin => new AppleHFS();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.HFS;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("HFS") {}
|
||||
public MBR() : base("hfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple HFS (MBR)");
|
||||
public override IFilesystem Plugin => new AppleHFS();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.HFS;
|
||||
[TestFixture]
|
||||
public class Optical : FilesystemTest
|
||||
{
|
||||
public Optical() : base("HFS") {}
|
||||
public Optical() : base("hfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple HFS (CD-ROM)");
|
||||
public override IFilesystem Plugin => new AppleHFS();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.HFS;
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
{
|
||||
public RDB() : base("HFS") {}
|
||||
public RDB() : base("hfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple HFS (RDB)");
|
||||
public override IFilesystem Plugin => new AppleHFS();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.HFS;
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
{
|
||||
public Whole() : base("HFS") {}
|
||||
public Whole() : base("hfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple HFS");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Hpfs : FilesystemTest
|
||||
{
|
||||
public Hpfs() : base("HPFS") {}
|
||||
public Hpfs() : base("hpfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems",
|
||||
"High Performance File System");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Hpofs : FilesystemTest
|
||||
{
|
||||
public Hpofs() : base("HPOFS") {}
|
||||
public Hpofs() : base("hpofs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems",
|
||||
"High Performance Optical File System");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Iso9660 : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Iso9660() : base("ISO9660") {}
|
||||
public Iso9660() : base("iso9660") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "ISO9660");
|
||||
public override IFilesystem Plugin => new ISO9660();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Jfs2 : FilesystemTest
|
||||
{
|
||||
public Jfs2() : base("JFS filesystem") {}
|
||||
public Jfs2() : base("jfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "JFS2");
|
||||
public override IFilesystem Plugin => new JFS();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class LisaFs : ReadOnlyFilesystemTest
|
||||
{
|
||||
public LisaFs() : base("LisaFS") {}
|
||||
public LisaFs() : base("lisafs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Apple Lisa filesystem");
|
||||
public override IFilesystem Plugin => new LisaFS();
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Locus : FilesystemTest
|
||||
{
|
||||
public Locus() : base("Locus filesystem") {}
|
||||
public Locus() : base("locus") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Locus filesystem");
|
||||
public override IFilesystem Plugin => new Aaru.Filesystems.Locus();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Mfs : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Mfs() : base("MFS") {}
|
||||
public Mfs() : base("mfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Macintosh File System");
|
||||
public override IFilesystem Plugin => new AppleMFS();
|
||||
|
||||
@@ -51,7 +51,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 50399,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v1"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -61,7 +61,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 64512,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -71,7 +71,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 65535,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -81,7 +81,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 65535,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -91,7 +91,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 65535,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -101,7 +101,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 65535,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -111,7 +111,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 65535,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -121,7 +121,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 65535,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -131,7 +131,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 65535,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -141,7 +141,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 65535,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -51,7 +51,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 360,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v1"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -61,7 +61,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1200,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v1"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -71,7 +71,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 720,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v1"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -81,7 +81,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v1"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -91,7 +91,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -101,7 +101,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -111,7 +111,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -121,7 +121,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -131,7 +131,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -141,7 +141,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -151,7 +151,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -161,7 +161,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v1"
|
||||
Type = "minix"
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -51,7 +51,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 511055,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v2"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -61,7 +61,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 510976,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -71,7 +71,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 131008,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -81,7 +81,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 131008,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -91,7 +91,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 131008,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -101,7 +101,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 131008,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -111,7 +111,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 131008,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -121,7 +121,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 131008,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -131,7 +131,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 131008,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -51,7 +51,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 360,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v2"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -61,7 +61,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1200,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v2"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -71,7 +71,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 720,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v2"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -81,7 +81,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix 3 v2"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -91,7 +91,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -101,7 +101,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -111,7 +111,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -121,7 +121,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -131,7 +131,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -141,7 +141,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -151,7 +151,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 1440,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v2"
|
||||
Type = "minix2"
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -51,7 +51,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 523151,
|
||||
ClusterSize = 4096,
|
||||
Type = "Minix v3"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -61,7 +61,7 @@ public class MBR : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 510976,
|
||||
ClusterSize = 1024,
|
||||
Type = "Minix v3"
|
||||
Type = "minix3"
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -52,7 +52,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 90,
|
||||
ClusterSize = 4096,
|
||||
Type = "Minix v3"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -62,7 +62,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 300,
|
||||
ClusterSize = 4096,
|
||||
Type = "Minix v3"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -72,7 +72,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 180,
|
||||
ClusterSize = 4096,
|
||||
Type = "Minix v3"
|
||||
Type = "minix3"
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -82,7 +82,7 @@ public class Whole : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 360,
|
||||
ClusterSize = 4096,
|
||||
Type = "Minix v3"
|
||||
Type = "minix3"
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Nilfs2 : FilesystemTest
|
||||
{
|
||||
public Nilfs2() : base("NILFS2 filesystem") {}
|
||||
public Nilfs2() : base("nilfs2") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems",
|
||||
"New Implementation of a Log-structured File System 2");
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.NTFS;
|
||||
[TestFixture]
|
||||
public class GPT : FilesystemTest
|
||||
{
|
||||
public GPT() : base("NTFS") {}
|
||||
public GPT() : base("ntfs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "New Technology File System (GPT)");
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.NTFS;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("NTFS") {}
|
||||
public MBR() : base("ntfs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "New Technology File System (MBR)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.PFS3;
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public APM() : base("PFS v3") {}
|
||||
public APM() : base("pfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems",
|
||||
"Professional File System 3 (APM)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.PFS3;
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
{
|
||||
public RDB() : base("PFS v3") {}
|
||||
public RDB() : base("pfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems",
|
||||
"Professional File System 3 (RDB)");
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.ProDOS;
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public APM() : base("ProDOS") {}
|
||||
public APM() : base("prodos") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "ProDOS filesystem (APM)");
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.QNX4;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("QNX4 filesystem") {}
|
||||
public MBR() : base("qnx4") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "QNX 4 filesystem (MBR)");
|
||||
public override IFilesystem Plugin => new Aaru.Filesystems.QNX4();
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.QNX4;
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
{
|
||||
public Whole() : base("QNX4 filesystem") {}
|
||||
public Whole() : base("qnx4") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "QNX 4 filesystem");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class ReFsMbr : FilesystemTest
|
||||
{
|
||||
public ReFsMbr() : base("Resilient File System") {}
|
||||
public ReFsMbr() : base("refs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems",
|
||||
"Resilient File System (MBR)");
|
||||
|
||||
@@ -37,6 +37,8 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Reiser3 : FilesystemTest
|
||||
{
|
||||
public Reiser3() : base("reiserfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Reiser filesystem v3");
|
||||
public override IFilesystem Plugin => new Reiser();
|
||||
public override bool Partitions => true;
|
||||
@@ -50,8 +52,7 @@ public class Reiser3 : FilesystemTest
|
||||
Sectors = 262144,
|
||||
SectorSize = 512,
|
||||
Clusters = 32752,
|
||||
ClusterSize = 4096,
|
||||
Type = "Reiser 3.5 filesystem"
|
||||
ClusterSize = 4096
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -60,8 +61,7 @@ public class Reiser3 : FilesystemTest
|
||||
Sectors = 262144,
|
||||
SectorSize = 512,
|
||||
Clusters = 32752,
|
||||
ClusterSize = 4096,
|
||||
Type = "Reiser 3.5 filesystem"
|
||||
ClusterSize = 4096
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -71,7 +71,6 @@ public class Reiser3 : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 32752,
|
||||
ClusterSize = 4096,
|
||||
Type = "Reiser 3.6 filesystem",
|
||||
VolumeName = "VolumeLabel",
|
||||
VolumeSerial = "43c72111-6512-e747-b626-63704e65352a"
|
||||
},
|
||||
@@ -82,8 +81,7 @@ public class Reiser3 : FilesystemTest
|
||||
Sectors = 1024000,
|
||||
SectorSize = 512,
|
||||
Clusters = 127744,
|
||||
ClusterSize = 4096,
|
||||
Type = "Reiser 3.5 filesystem"
|
||||
ClusterSize = 4096
|
||||
},
|
||||
new FileSystemTest
|
||||
{
|
||||
@@ -93,7 +91,6 @@ public class Reiser3 : FilesystemTest
|
||||
SectorSize = 512,
|
||||
Clusters = 127744,
|
||||
ClusterSize = 4096,
|
||||
Type = "Reiser 3.6 filesystem",
|
||||
VolumeName = "DicSetter",
|
||||
VolumeSerial = "8902ac3c-3e0c-4c4c-84ec-03405c1710f1"
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems;
|
||||
[TestFixture]
|
||||
public class Reiser4 : FilesystemTest
|
||||
{
|
||||
public Reiser4() : base("Reiser 4 filesystem") {}
|
||||
public Reiser4() : base("reiser4") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Reiser filesystem v4");
|
||||
public override IFilesystem Plugin => new Aaru.Filesystems.Reiser4();
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.SFS;
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public APM() : base("SmartFileSystem") {}
|
||||
public APM() : base("sfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Smart File System (APM)");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.SFS;
|
||||
[TestFixture, SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public class MBR_RDB : FilesystemTest
|
||||
{
|
||||
public MBR_RDB() : base("SmartFileSystem") {}
|
||||
public MBR_RDB() : base("sfs") {}
|
||||
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Smart File System (MBR+RDB)");
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.SFS;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("SmartFileSystem") {}
|
||||
public MBR() : base("sfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Smart File System (MBR)");
|
||||
public override IFilesystem Plugin => new Aaru.Filesystems.SFS();
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.SFS;
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
{
|
||||
public RDB() : base("SmartFileSystem") {}
|
||||
public RDB() : base("sfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Smart File System (RDB)");
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.SysV;
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public MBR() : base("SVR4 fs") {}
|
||||
public MBR() : base("sysv_r4") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "System V filesystem (MBR)");
|
||||
public override IFilesystem Plugin => new SysVfs();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.SysV;
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
{
|
||||
public RDB() : base("SVR4 fs") {}
|
||||
public RDB() : base("sysv_r4") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "System V filesystem (RDB)");
|
||||
public override IFilesystem Plugin => new SysVfs();
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.SysV;
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
{
|
||||
public Whole() : base("SVR4 fs") {}
|
||||
public Whole() : base("sysv_r4") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "System V filesystem");
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v1.02",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "595c5cfa38ce8b66LinuxUDF"
|
||||
},
|
||||
@@ -66,7 +66,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 204800,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Apple Mac OS X UDF FS",
|
||||
Type = "UDF v1.02",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "6D02A231 (Mac OS X newfs_udf) UDF Volume Set"
|
||||
},
|
||||
@@ -79,7 +79,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "DicSetter",
|
||||
VolumeSerial = "5cc7882441a86e93LinuxUDF"
|
||||
},
|
||||
@@ -92,7 +92,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 262144,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*NetBSD userland UDF",
|
||||
Type = "UDF v1.50",
|
||||
Type = "udf",
|
||||
VolumeName = "anonymous",
|
||||
VolumeSerial = "47b062a138bcfb83"
|
||||
},
|
||||
@@ -105,7 +105,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 262144,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*NetBSD userland UDF",
|
||||
Type = "UDF v1.50",
|
||||
Type = "udf",
|
||||
VolumeName = "anonymous",
|
||||
VolumeSerial = "382885b272e72ab8"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Optical : FilesystemTest
|
||||
Clusters = 2295104,
|
||||
ClusterSize = 2048,
|
||||
SystemId = "*ExpressUDF",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "Volume Set ID not specified"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v1.50",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "595c5d00c5b3405aLinuxUDF"
|
||||
},
|
||||
@@ -66,7 +66,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 409600,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Apple Mac OS X UDF FS",
|
||||
Type = "UDF v1.50",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "4DD0458B (Mac OS X newfs_udf) UDF Volume Set"
|
||||
},
|
||||
@@ -79,7 +79,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 8388608,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*SUN SOLARIS UDF",
|
||||
Type = "UDF v1.50",
|
||||
Type = "udf",
|
||||
VolumeName = "*NoLabel*",
|
||||
VolumeSerial = "595EB55A"
|
||||
},
|
||||
@@ -92,7 +92,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "DicSetter",
|
||||
VolumeSerial = "5cc78f8bba4dfe00LinuxUDF"
|
||||
},
|
||||
@@ -105,7 +105,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 262144,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*NetBSD userland UDF",
|
||||
Type = "UDF v1.50",
|
||||
Type = "udf",
|
||||
VolumeName = "anonymous",
|
||||
VolumeSerial = "441072592d72c6e9"
|
||||
},
|
||||
@@ -118,7 +118,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 262144,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*NetBSD userland UDF",
|
||||
Type = "UDF v1.50",
|
||||
Type = "udf",
|
||||
VolumeName = "anonymous",
|
||||
VolumeSerial = "5b2ab9f9605af1ae"
|
||||
},
|
||||
@@ -131,7 +131,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 65536,
|
||||
ClusterSize = 2048,
|
||||
SystemId = "*Apple Computer, Inc.",
|
||||
Type = "UDF v1.50",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "DCC41202AppleUDF"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Optical : FilesystemTest
|
||||
Clusters = 2295104,
|
||||
ClusterSize = 2048,
|
||||
SystemId = "*ExpressUDF",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "UDF5A5DEF48",
|
||||
VolumeSerial = "Volume Set ID not specified"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v2.00",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "595c5d07f4fc8e8dLinuxUDF"
|
||||
},
|
||||
@@ -66,7 +66,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 614400,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Apple Mac OS X UDF FS",
|
||||
Type = "UDF v2.00",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "5D91CB4F (Mac OS X newfs_udf) UDF Volume Set"
|
||||
},
|
||||
@@ -79,7 +79,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "DicSetter",
|
||||
VolumeSerial = "5cc7f4183e0d5f7aLinuxUDF"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Optical : FilesystemTest
|
||||
Clusters = 2295104,
|
||||
ClusterSize = 2048,
|
||||
SystemId = "*ExpressUDF",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "VolLabel",
|
||||
VolumeSerial = "VolumeSetId"
|
||||
},
|
||||
@@ -66,7 +66,7 @@ public class Optical : FilesystemTest
|
||||
Clusters = 295264,
|
||||
ClusterSize = 2048,
|
||||
SystemId = "*ExpressUDF",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "UDF5A5DFF10",
|
||||
VolumeSerial = "Volume Set ID not specified"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "595c5d0bee60c3bbLinuxUDF"
|
||||
},
|
||||
@@ -66,7 +66,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 819200,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Apple Mac OS X UDF FS",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "48847EB3 (Mac OS X newfs_udf) UDF Volume Set"
|
||||
},
|
||||
@@ -79,7 +79,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 262144,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*NetBSD userland UDF",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "anonymous",
|
||||
VolumeSerial = "5bc935e11b089104"
|
||||
},
|
||||
@@ -92,7 +92,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "DicSetter",
|
||||
VolumeSerial = "5cc8816fcb3a3b38LinuxUDF"
|
||||
},
|
||||
@@ -105,7 +105,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 262144,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*NetBSD userland UDF",
|
||||
Type = "UDF v2.01",
|
||||
Type = "udf",
|
||||
VolumeName = "anonymous",
|
||||
VolumeSerial = "60a80c385dda0f96"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Linux UDFFS",
|
||||
Type = "UDF v2.50",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "595c5d0e4f338552LinuxUDF"
|
||||
},
|
||||
@@ -66,7 +66,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 1024000,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*Apple Mac OS X UDF FS",
|
||||
Type = "UDF v2.50",
|
||||
Type = "udf",
|
||||
VolumeName = "Volume label",
|
||||
VolumeSerial = "709E84A1 (Mac OS X newfs_udf) UDF Volume Set"
|
||||
},
|
||||
@@ -79,7 +79,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 262144,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*NetBSD userland UDF",
|
||||
Type = "UDF v2.50",
|
||||
Type = "udf",
|
||||
VolumeName = "anonymous",
|
||||
VolumeSerial = "672fe9a0114cdddb"
|
||||
},
|
||||
@@ -92,7 +92,7 @@ public class Whole : FilesystemTest
|
||||
Clusters = 262144,
|
||||
ClusterSize = 512,
|
||||
SystemId = "*NetBSD userland UDF",
|
||||
Type = "UDF v2.50",
|
||||
Type = "udf",
|
||||
VolumeName = "anonymous",
|
||||
VolumeSerial = "723d15a55a5d8156"
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user