diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-04-22 19:23:45 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-04-22 19:23:45 +0200 |
| commit | bdc7004014d3b62a72867bc78961feb7c4f73c2a (patch) | |
| tree | 2e3c9bd3ea03f849b27e4998a6b4d9e8325fb8aa /test | |
| parent | 9ed96a1ea3fc742791a8774267d5c7d5b604ce79 (diff) | |
| download | nissy-core-bdc7004014d3b62a72867bc78961feb7c4f73c2a.tar.gz nissy-core-bdc7004014d3b62a72867bc78961feb7c4f73c2a.zip | |
Improved speed for esep table generation, but it is still slow. Changed moves names.
Diffstat (limited to 'test')
| -rw-r--r-- | test/101_gendata_esep/00_all.in (renamed from test/101_gendata_eoesep/00_all.in) | 0 | ||||
| -rw-r--r-- | test/101_gendata_esep/00_all.out (renamed from test/101_gendata_eoesep/00_all.out) | 0 | ||||
| -rw-r--r-- | test/101_gendata_esep/gendata_esep_tests.c (renamed from test/101_gendata_eoesep/gendata_eoesep_tests.c) | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/test/101_gendata_eoesep/00_all.in b/test/101_gendata_esep/00_all.in index e69de29..e69de29 100644 --- a/test/101_gendata_eoesep/00_all.in +++ b/test/101_gendata_esep/00_all.in | |||
diff --git a/test/101_gendata_eoesep/00_all.out b/test/101_gendata_esep/00_all.out index deba01f..deba01f 100644 --- a/test/101_gendata_eoesep/00_all.out +++ b/test/101_gendata_esep/00_all.out | |||
diff --git a/test/101_gendata_eoesep/gendata_eoesep_tests.c b/test/101_gendata_esep/gendata_esep_tests.c index e03e95d..bc7ce25 100644 --- a/test/101_gendata_eoesep/gendata_eoesep_tests.c +++ b/test/101_gendata_esep/gendata_esep_tests.c | |||
| @@ -7,14 +7,14 @@ uint32_t buf_c[CSIZE/4]; | |||
| 7 | uint32_t buf_e[ESIZE/4]; | 7 | uint32_t buf_e[ESIZE/4]; |
| 8 | 8 | ||
| 9 | size_t gendata_cocsep(void *); | 9 | size_t gendata_cocsep(void *); |
| 10 | size_t gendata_eoesep(uint8_t, uint8_t, const void *, void *); | 10 | size_t gendata_esep(const void *, void *); |
| 11 | 11 | ||
| 12 | int main(void) { | 12 | int main(void) { |
| 13 | uint32_t i; | 13 | uint32_t i; |
| 14 | size_t result; | 14 | size_t result; |
| 15 | 15 | ||
| 16 | gendata_cocsep(buf_c); | 16 | gendata_cocsep(buf_c); |
| 17 | result = gendata_eoesep(0U, 4U, buf_c, buf_e); | 17 | result = gendata_esep(buf_c, buf_e); |
| 18 | 18 | ||
| 19 | printf("nothing\n"); | 19 | printf("nothing\n"); |
| 20 | 20 | ||
