mkfs-simple: re-enable other size tests

Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
Sean Cross 2019-06-09 15:52:22 +08:00
parent 66136b70b8
commit 2091c2ed21
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ int main(int argc, char **argv) {
int ret = 0;
ret += make_image("fat12-1300k.img", 1300 * 1024);
// ret += make_image("fat12-1800k.img", 1800 * 1024);
// ret += make_image("fat12-128k.img", 128 * 1024);
ret += make_image("fat12-1800k.img", 1800 * 1024);
ret += make_image("fat12-128k.img", 128 * 1024);
ret += make_image("fat12-16M.img", 16 * 1024 * 1024);
return ret;