2021-03-01 00:52:03 +00:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// Aaru Data Preservation Suite
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : FAT12.cs
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// Component : Aaru unit testing.
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU General Public License as
|
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
// Copyright © 2011-2021 Natalia Portillo
|
|
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
using Aaru.CommonTypes;
|
|
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
|
|
|
|
|
using Aaru.Filesystems;
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Aaru.Tests.Filesystems.FAT12
|
|
|
|
|
|
{
|
|
|
|
|
|
[TestFixture]
|
2021-06-01 22:51:36 +01:00
|
|
|
|
public class MBR : ReadOnlyFilesystemTest
|
2021-03-01 00:52:03 +00:00
|
|
|
|
{
|
2021-03-01 19:34:30 +00:00
|
|
|
|
public MBR() : base("FAT12") {}
|
|
|
|
|
|
|
2021-03-01 21:33:58 +00:00
|
|
|
|
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Filesystems", "FAT12 (MBR)");
|
|
|
|
|
|
public override IFilesystem Plugin => new FAT();
|
|
|
|
|
|
public override bool Partitions => true;
|
2021-03-01 19:34:30 +00:00
|
|
|
|
|
2021-03-01 21:18:02 +00:00
|
|
|
|
public override FileSystemTest[] Tests => new[]
|
2021-03-01 00:52:03 +00:00
|
|
|
|
{
|
2021-05-25 03:09:48 +01:00
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "darwin_6.0.2.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "AA180CF0"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "darwin_7.0.1.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3064,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "EC241B05"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "darwin_8.0.1.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3064,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "64F5191A"
|
|
|
|
|
|
},
|
2021-03-01 21:18:02 +00:00
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "compaqmsdos331.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 8192,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 1000,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.3"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "drdos_3.40.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2772,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.2",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "drdos_3.41.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.2",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "drdos_5.00.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.3",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "drdos_6.00.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.3",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "drdos_7.02.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.3",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "drdos_7.03.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "DRDOS 7",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "drdos_8.00.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "09F92756"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "drdos_8.10.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "08FF1164"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "msdos_3.31.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.3",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "msdos_4.00.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS4.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "3C2B0903"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "msdos_4.01.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 8192,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 1000,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS4.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "407D1907"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "msdos_5.00.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "1B08090B"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "msdos_5.00a.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "3348090C"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "msdos_6.00.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "124008FB"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "msdos_6.20rc1.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 8192,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 1000,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "395718E9"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "msdos_6.20.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "31190907"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "msdos_6.21.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "27230917"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "msdos_6.22.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "156308F3"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "msdos_7.10.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2008,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSWIN4.1",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "2F781809"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "novelldos_7.00.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.3",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "opendos_7.01.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.3",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_2000.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 7.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "390F090A"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_2.00.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 32768,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4031,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 2.0"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_2.10.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 32768,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4031,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 2.0"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_3.00.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 32768,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4024,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.0"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_3.10.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 32768,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4024,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.1"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_3.20.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.2",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "pcdos_3.30.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 32768,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4024,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.3"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_4.00.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 32768,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4024,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 4.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "0F340FE4"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_5.00.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "363B0904"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_5.02.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "10650902"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_6.10.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 6.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "313208FE"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "pcdos_6.30.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-10 04:01:50 +01:00
|
|
|
|
Clusters = 2890,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 6.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-10 04:01:50 +01:00
|
|
|
|
VolumeSerial = "253E0901"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "pcdos_7.00.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 7.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "0E1E090D"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "toshibamsdos_3.30.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 8192,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 1000,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "T V3.30 ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-10 04:01:50 +01:00
|
|
|
|
TestFile = "toshibamsdos_4.01.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 8192,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 1000,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "T V4.00 ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "3C2319E8"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "msos2_1.21.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2008,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 10.2",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "66CC3C15"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "msos2_1.30.1.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2008,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 10.2",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "66A54C15"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "multiuserdos_7.22r4.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2008,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 3.2",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "os2_1.20.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 10.2",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-01 21:24:59 +01:00
|
|
|
|
VolumeSerial = "5D13D815"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "os2_1.30.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 10.2",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-01 21:24:59 +01:00
|
|
|
|
VolumeSerial = "5D48C815"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "os2_6.307.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 20.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-01 21:24:59 +01:00
|
|
|
|
VolumeSerial = "5D165815"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "os2_6.514.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 20.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-01 21:24:59 +01:00
|
|
|
|
VolumeSerial = "5D036415"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "os2_6.617.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 20.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-01 21:24:59 +01:00
|
|
|
|
VolumeSerial = "5CED2415"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "os2_8.162.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 20.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-01 21:24:59 +01:00
|
|
|
|
VolumeSerial = "5D470415"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "os2_9.023.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-01 21:24:59 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 20.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-01 21:24:59 +01:00
|
|
|
|
VolumeSerial = "9BA14415"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "ecs.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 1890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "IBM 4.50",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "E6B0B814"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
2021-05-20 16:47:40 +01:00
|
|
|
|
{
|
|
|
|
|
|
TestFile = "macosx_10.3.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3062,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "919408FC"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "macosx_10.4.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3063,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "BD970C0C"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
2021-03-01 21:18:02 +00:00
|
|
|
|
{
|
|
|
|
|
|
TestFile = "macosx_10.11.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4079,
|
|
|
|
|
|
ClusterSize = 2048,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "26A21EF4"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "win10.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3552,
|
|
|
|
|
|
ClusterSize = 2048,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "74F4921D"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "win2000.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4088,
|
|
|
|
|
|
ClusterSize = 2048,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "C4B64D11"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "win95.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2008,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSWIN4.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "29200D0C"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "win95osr2.1.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2008,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSWIN4.1",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "234F0DE4"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "win95osr2.5.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2008,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSWIN4.1",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "074C0DFC"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "win95osr2.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2008,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSWIN4.1",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "33640D18"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "win98.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2044,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSWIN4.1",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "0E121460"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "win98se.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2044,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSWIN4.1",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "094C0EED"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "winme.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2044,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSWIN4.1",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "38310F02"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "winnt_3.10.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 4016,
|
|
|
|
|
|
ClusterSize = 2048,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "50489A1B"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "winnt_3.50.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2044,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "2CE52101"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "winnt_3.51.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2044,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "94313E7E"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "winnt_4.00.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-01 21:57:50 +01:00
|
|
|
|
Sectors = 28672,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-01 21:57:50 +01:00
|
|
|
|
Clusters = 3520,
|
|
|
|
|
|
ClusterSize = 4096,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-01 21:57:50 +01:00
|
|
|
|
VolumeSerial = "00621759"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "winvista.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3072,
|
|
|
|
|
|
ClusterSize = 2048,
|
|
|
|
|
|
SystemId = "MSDOS5.0",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "BAD08A1E"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "beos_r4.5.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 16384,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2040,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BeOS ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "00000000"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
2021-05-14 00:07:03 +01:00
|
|
|
|
TestFile = "linux_2.0.0.aif",
|
2021-03-01 21:18:02 +00:00
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-14 00:07:03 +01:00
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = false,
|
|
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
VolumeSerial = "670000"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "linux_2.0.29.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-14 00:07:03 +01:00
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
VolumeName = "VolumeLabel",
|
|
|
|
|
|
VolumeSerial = "609AC96F"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "linux_2.0.34.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
VolumeName = "VolumeLabel",
|
|
|
|
|
|
VolumeSerial = "609BAA17"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "linux_2.0.37.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "609D1C96"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "linux_2.0.38.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
VolumeName = "VolumeLabel",
|
|
|
|
|
|
VolumeSerial = "609C3CCA"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "linux_2.2.17.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
VolumeName = "VolumeLabel",
|
|
|
|
|
|
VolumeSerial = "609C651A"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "linux_2.2.20.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
VolumeName = "VolumeLabel",
|
|
|
|
|
|
VolumeSerial = "609C9B1B"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "linux_2.4.18.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3016,
|
|
|
|
|
|
ClusterSize = 4096,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
VolumeName = "VolumeLabel",
|
2021-05-14 00:07:03 +01:00
|
|
|
|
VolumeSerial = "609CA8CE"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "freebsd_6.1.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-05 01:50:19 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-05 01:50:19 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-05 01:50:19 +01:00
|
|
|
|
VolumeSerial = "76D11EF0"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "freebsd_7.0.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-05 01:50:19 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-05 01:50:19 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-05 01:50:19 +01:00
|
|
|
|
VolumeSerial = "52491EF0"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "freebsd_8.2.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
2021-05-05 01:50:19 +01:00
|
|
|
|
Sectors = 24576,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
2021-05-05 01:50:19 +01:00
|
|
|
|
Clusters = 3016,
|
2021-03-01 21:18:02 +00:00
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD4.4 ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
2021-05-05 01:50:19 +01:00
|
|
|
|
VolumeSerial = "DF9D1EEF"
|
2021-05-01 20:16:58 +01:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "dflybsd_1.0.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2898,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "NO NAME",
|
|
|
|
|
|
VolumeSerial = "63C81AFB"
|
2021-05-05 01:50:19 +01:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "netbsd_1.6.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3064,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "84431CEB"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "netbsd_6.1.5.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3063,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "NetBSD ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "7F161B1D"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "netbsd_7.1.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3064,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "NetBSD ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "40961817"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "openbsd_4.7.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3064,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "BSD 4.4",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "F01F07F2"
|
2021-05-15 17:07:38 +01:00
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "pcexchange_2.0.2.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "PCX 2.0 ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "241408F2"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "pcexchange_2.0.5.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "PCX 2.0 ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "241408F2"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "pcexchange_2.1.1.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 3064,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "PCX 2.0 ",
|
|
|
|
|
|
VolumeName = "volumelabel",
|
|
|
|
|
|
VolumeSerial = "CA6C188B"
|
|
|
|
|
|
},
|
|
|
|
|
|
new FileSystemTest
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "pcexchange_2.2.aif",
|
|
|
|
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
|
|
|
|
Sectors = 24576,
|
|
|
|
|
|
SectorSize = 512,
|
|
|
|
|
|
Bootable = true,
|
|
|
|
|
|
Clusters = 2890,
|
|
|
|
|
|
ClusterSize = 4096,
|
|
|
|
|
|
SystemId = "PCX_2.2 ",
|
|
|
|
|
|
VolumeName = "VOLUMELABEL",
|
|
|
|
|
|
VolumeSerial = "241408F2"
|
2021-03-01 21:18:02 +00:00
|
|
|
|
}
|
2021-03-01 00:52:03 +00:00
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|