Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func copyPartitionFilesWithOptions(sourceRoot, targetRoot string, noClobber bool
// `-a` ensures unix permissions, extended attributes (including SELinux), and sub-directories (-r) are copied.
// `--no-dereference` ensures that symlinks are copied as symlinks.
copyArgs := []string{
"--verbose", "-a", "--no-dereference", "--sparse", "always",
"--verbose", "-a", "--no-dereference",
sourceRoot, targetRoot,
}

Comment thread
liulanze marked this conversation as resolved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ func testCustomizeImageVerityCosiExtractHelper(t *testing.T, testName string, ba
// implementation details, and randomness. So, just enforce that the final size is below an arbitary value. Values
// were picked by observing values seen during test and adding a good buffer.
assert.Greater(t, int64(150*diskutils.MiB), bootStat.Size())
assert.Greater(t, int64(675*diskutils.MiB), rootStat.Size())
assert.Greater(t, int64(750*diskutils.MiB), rootStat.Size())
assert.Greater(t, int64(10*diskutils.MiB), hashStat.Size())
assert.Greater(t, int64(150*diskutils.MiB), varStat.Size())

Expand Down
Loading