mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
aa75c5563a
Created tests for all API functions exported in src/liblzma/api/lzma/hardware.h. The tests are fairly trivial but are helpful because they will inform users if their machines cannot support these functions. They also improve the code coverage metrics.
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
/// \file test_hardware.c
|
|
/// \brief Tests src/liblzma/api/lzma/hardware.h API functions
|
|
///
|
|
/// Since the output values of these functions are hardware dependent, these
|
|
/// tests are trivial. They are simply used to detect errors and machines
|
|
/// that these function are not supported on.
|
|
//
|
|
// Author: Jia Tan
|
|
//
|
|
// This file has been put into the public domain.
|
|
// You can do whatever you want with this file.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "tests.h"
|
|
|
|
|
|
static void
|
|
test_lzma_physmem(void)
|
|
{
|
|
// NOTE: Use _skip instead of _fail because 0 can also mean that we
|
|
// don't know how to get this information on this operating system.
|
|
if (lzma_physmem() == 0)
|
|
assert_skip("Could not determine amount of physical memory");
|
|
}
|
|
|
|
|
|
static void
|
|
test_lzma_cputhreads(void)
|
|
{
|
|
if (lzma_cputhreads() == 0)
|
|
assert_skip("Could not determine cpu core count");
|
|
}
|
|
|
|
|
|
extern int
|
|
main(int argc, char **argv)
|
|
{
|
|
tuktest_start(argc, argv);
|
|
tuktest_run(test_lzma_physmem);
|
|
tuktest_run(test_lzma_cputhreads);
|
|
return tuktest_end();
|
|
}
|