xz/tests/test_index.c

44 lines
1.2 KiB
C
Raw Normal View History

2007-12-08 22:42:33 +00:00
///////////////////////////////////////////////////////////////////////////////
//
2008-01-15 05:41:39 +00:00
/// \file test_index.c
2007-12-08 22:42:33 +00:00
/// \brief Tests functions handling the lzma_index structure
//
// Copyright (C) 2007 Lasse Collin
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library 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
// Lesser General Public License for more details.
//
///////////////////////////////////////////////////////////////////////////////
#include "tests.h"
int
2007-12-09 09:03:28 +00:00
main(void)
2007-12-08 22:42:33 +00:00
{
2007-12-09 09:03:28 +00:00
lzma_index my_index[3] = {
{ 22, 33, my_index + 1 },
{ 44, 55, my_index + 2 },
2007-12-08 22:42:33 +00:00
{ 66, 77, NULL },
};
2007-12-09 09:03:28 +00:00
lzma_index *i = lzma_index_dup(my_index, NULL);
2007-12-08 22:42:33 +00:00
expect(i != NULL);
2007-12-09 09:03:28 +00:00
expect(lzma_index_is_equal(my_index, i));
2007-12-08 22:42:33 +00:00
i->next->next->uncompressed_size = 99;
2007-12-09 09:03:28 +00:00
expect(!lzma_index_is_equal(my_index, i));
2007-12-08 22:42:33 +00:00
lzma_index_free(i, NULL);
return 0;
}