Just runs a sample of suitably byte arrays with an expected set of functions. The samples are in little endian format and the outputs are what we expect them to be. This should run regardless of the endian of your machine.
20 lines
410 B
C
20 lines
410 B
C
/* Copyright (C) 2024 Aryadev Chavali
|
|
|
|
* You may distribute and modify this code under the terms of the
|
|
* GPLv2 license. You should have received a copy of the GPLv2
|
|
* license with this file. If not, please write to:
|
|
* aryadev@aryadevchavali.com.
|
|
|
|
* Created: 2024-04-28
|
|
* Author: Aryadev Chavali
|
|
* Description:
|
|
*/
|
|
|
|
#include "./test-base.h"
|
|
|
|
int main(void)
|
|
{
|
|
RUN_TEST_SUITE(test_lib);
|
|
return 0;
|
|
}
|