aboutsummaryrefslogtreecommitdiffstats
path: root/stpntolower.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-06-12 20:13:23 +0200
committerMattias Andrée <maandree@kth.se>2022-06-12 20:13:23 +0200
commit3d6482b0949159c33d6ac2972a69868bdda766f2 (patch)
tree722cf9ab069d75af63664eeae0c35c63aa73c51c /stpntolower.c
parentFix warnings (diff)
downloadlibsimple-3d6482b0949159c33d6ac2972a69868bdda766f2.tar.gz
libsimple-3d6482b0949159c33d6ac2972a69868bdda766f2.tar.bz2
libsimple-3d6482b0949159c33d6ac2972a69868bdda766f2.tar.xz
Move some test code to newline created .c files
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'stpntolower.c')
-rw-r--r--stpntolower.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/stpntolower.c b/stpntolower.c
index 90e38d0..de4e74e 100644
--- a/stpntolower.c
+++ b/stpntolower.c
@@ -47,15 +47,6 @@ main(void)
stpcpy(buf, "ABCDEabcde12345");
assert(!strcmpnul(libsimple_stpntolower(&buf[0], &buf[0], SIZE_MAX), ""));
assert(!strcmp(buf, "abcdeabcde12345"));
- stpcpy(buf, "ABCDEabcde12345");
- assert(!strcmpnul(libsimple_strntolower(&buf[3], &buf[0], SIZE_MAX), "abcdeabcde12345"));
- assert(!strcmp(buf, "ABCabcdeabcde12345"));
- stpcpy(buf, "ABCDEabcde12345");
- assert(!strcmpnul(libsimple_strntolower(&buf[0], &buf[3], SIZE_MAX), "deabcde12345"));
- assert(!strcmp(buf, "deabcde12345"));
- stpcpy(buf, "ABCDEabcde12345");
- assert(!strcmpnul(libsimple_strntolower(&buf[0], &buf[0], SIZE_MAX), "abcdeabcde12345"));
- assert(!strcmp(buf, "abcdeabcde12345"));
memset(buf, 0, sizeof(buf));
stpcpy(buf, "ABCDEabcde12345");
@@ -70,19 +61,6 @@ main(void)
stpcpy(buf, "ABCDEabcde12345X");
assert(!strcmpnul(libsimple_stpntolower(&buf[0], &buf[0], 15), "X"));
assert(!strcmp(buf, "abcdeabcde12345X"));
- memset(buf, 0, sizeof(buf));
- stpcpy(buf, "ABCDEabcde12345");
- buf[18] = 'X';
- assert(!strcmpnul(libsimple_strntolower(&buf[3], &buf[0], 15), "abcdeabcde12345X"));
- assert(!strcmp(buf, "ABCabcdeabcde12345X"));
- memset(buf, 0, sizeof(buf));
- stpcpy(buf, "ABCDEabcde12345");
- assert(!strcmpnul(libsimple_strntolower(&buf[0], &buf[3], 12), "deabcde12345345"));
- assert(!strcmp(buf, "deabcde12345345"));
- memset(buf, 0, sizeof(buf));
- stpcpy(buf, "ABCDEabcde12345X");
- assert(!strcmpnul(libsimple_strntolower(&buf[0], &buf[0], 15), "abcdeabcde12345X"));
- assert(!strcmp(buf, "abcdeabcde12345X"));
memset(buf, 0, sizeof(buf));
stpcpy(buf, "ABCDEabcde12345");
@@ -96,18 +74,6 @@ main(void)
stpcpy(buf, "ABCDEabcde12345");
assert(!strcmpnul(libsimple_stpntolower(&buf[0], &buf[0], 0), "ABCDEabcde12345"));
assert(!strcmp(buf, "ABCDEabcde12345"));
- memset(buf, 0, sizeof(buf));
- stpcpy(buf, "ABCDEabcde12345");
- assert(!strcmpnul(libsimple_strntolower(&buf[3], &buf[0], 0), "DEabcde12345"));
- assert(!strcmp(buf, "ABCDEabcde12345"));
- memset(buf, 0, sizeof(buf));
- stpcpy(buf, "ABCDEabcde12345");
- assert(!strcmpnul(libsimple_strntolower(&buf[0], &buf[3], 0), "ABCDEabcde12345"));
- assert(!strcmp(buf, "ABCDEabcde12345"));
- memset(buf, 0, sizeof(buf));
- stpcpy(buf, "ABCDEabcde12345");
- assert(!strcmpnul(libsimple_strntolower(&buf[0], &buf[0], 0), "ABCDEabcde12345"));
- assert(!strcmp(buf, "ABCDEabcde12345"));
return 0;
}