| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
- assert that the generated `siphash.o` code is identical to the
original code, available at `tests/assert-identical.sh`;
- remove unneeded `#define`s;
- rewrite code with the correct indentation, spacing and formatting;
- use C99 constructs over C89 (for loop variable declarations inside
the parentheses);
- fix the public API.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
oops
|
|\ |
|
| |
| |
| |
| |
| | |
This allows for inclusion of the test function/file in a program with an
existing main(). This is an isolated piece of #19.
|
|/
|
|
|
|
|
| |
This allows for shell scripts to check for success or failure without parsing
the printed output. If the function name is later changed from main() it
will also allow other code calling the tests to also easily check the pass
or fail status.
|
| |
|
|
|
|
|
|
|
| |
test.c: In function ‘main’:
test.c:49:9: warning: variable ‘fails’ set but not used [-Wunused-but-set-variable]
int fails = 0;
^~~~~
|
| |
|
| |
|
| |
|
|
|