From 81708be1d1784f41343530e8e01a68094bc50da6 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 16 Apr 2024 17:51:05 +0200 Subject: Failed attempts to fix / debug eoesep + other changes --- test/101_gendata_eoesep/00_all.in | 0 test/101_gendata_eoesep/00_all.out | 1 + test/101_gendata_eoesep/gendata_eoesep_tests.c | 22 ++++++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 test/101_gendata_eoesep/00_all.in create mode 100644 test/101_gendata_eoesep/00_all.out create mode 100644 test/101_gendata_eoesep/gendata_eoesep_tests.c (limited to 'test/101_gendata_eoesep') diff --git a/test/101_gendata_eoesep/00_all.in b/test/101_gendata_eoesep/00_all.in new file mode 100644 index 0000000..e69de29 diff --git a/test/101_gendata_eoesep/00_all.out b/test/101_gendata_eoesep/00_all.out new file mode 100644 index 0000000..deba01f --- /dev/null +++ b/test/101_gendata_eoesep/00_all.out @@ -0,0 +1 @@ +something diff --git a/test/101_gendata_eoesep/gendata_eoesep_tests.c b/test/101_gendata_eoesep/gendata_eoesep_tests.c new file mode 100644 index 0000000..e03e95d --- /dev/null +++ b/test/101_gendata_eoesep/gendata_eoesep_tests.c @@ -0,0 +1,22 @@ +#include "../test.h" + +#define CSIZE 1200000 +#define ESIZE 250000000 + +uint32_t buf_c[CSIZE/4]; +uint32_t buf_e[ESIZE/4]; + +size_t gendata_cocsep(void *); +size_t gendata_eoesep(uint8_t, uint8_t, const void *, void *); + +int main(void) { + uint32_t i; + size_t result; + + gendata_cocsep(buf_c); + result = gendata_eoesep(0U, 4U, buf_c, buf_e); + + printf("nothing\n"); + + return 0; +} -- cgit v1.3