tests: Update tests for ostree_repo_get_min_free_space_bytes()

https://github.com/ostreedev/ostree/issues/1720

Closes: #1722
Approved by: pwithnall
This commit is contained in:
Umang Jain 2018-09-14 20:22:37 +05:30 committed by Atomic Bot
parent a0937b6cf0
commit 5d2e62affb
1 changed files with 2 additions and 7 deletions

View File

@ -157,6 +157,7 @@ test_repo_get_min_free_space (Fixture *fixture,
{
g_autoptr (GKeyFile) config = NULL;
g_autoptr(GError) error = NULL;
guint64 bytes = 0;
typedef struct
{
const char *val;
@ -188,17 +189,11 @@ test_repo_get_min_free_space (Fixture *fixture,
ostree_repo_reload_config (repo, NULL, &error);
g_assert_no_error (error);
ostree_repo_prepare_transaction (repo, FALSE, NULL, &error);
ostree_repo_get_min_free_space_bytes (repo, &bytes, &error);
if (values_to_test[i].should_succeed)
g_assert_no_error (error);
else
continue;
ostree_repo_get_min_free_space_bytes (repo);
g_assert_no_error (error);
ostree_repo_commit_transaction (repo, NULL, NULL, &error);
g_assert_no_error (error);
}
}