diff options
| author | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-02-24 19:35:31 +0000 |
|---|---|---|
| committer | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-02-24 19:35:31 +0000 |
| commit | 97e08be344349cec09c116c329870e571b3f30d3 (patch) | |
| tree | 1304d3e7dd75186130e866a05272eb7c8611fcfd /tests | |
| parent | 40f7e11c5352a3e400d5315f8b2de1f33ca25c82 (diff) | |
| download | tinycc-97e08be344349cec09c116c329870e571b3f30d3.tar.gz tinycc-97e08be344349cec09c116c329870e571b3f30d3.tar.bz2 | |
tests/tcctest.c: Test COMPAT_TYPE(char *, signed char *).
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/tcctest.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/tcctest.c b/tests/tcctest.c index cc8ffd8..30c9518 100644 --- a/tests/tcctest.c +++ b/tests/tcctest.c @@ -2582,6 +2582,8 @@ void builtin_test(void) COMPAT_TYPE(int *, void *); COMPAT_TYPE(int *, const int *); COMPAT_TYPE(char *, unsigned char *); + COMPAT_TYPE(char *, signed char *); + COMPAT_TYPE(char *, char *); /* space is needed because tcc preprocessor introduces a space between each token */ COMPAT_TYPE(char * *, void *); #endif |
