]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blobdiff - tests/example.c
Remove invalid assert() in tracked_fds_find().
[coloredstderr/coloredstderr.git] / tests / example.c
index b1d42e3e53f7b4c84cf28ca820c1290585f0f1d4..3d165e56c89b6955d4531b28f1b4f7e12bd4106f 100644 (file)
@@ -32,7 +32,7 @@ int main(int argc, char **argv unused) {
     printf("write to stdout\n");
     fflush(stdout);
 
-    errno = 0;
+    errno = ENOMEM;
     perror("error!");
 
     write(STDERR_FILENO, "write to stderr 2", 17);
@@ -57,6 +57,7 @@ int main(int argc, char **argv unused) {
     putc_unlocked('\n', stdout);
 
     /* Test invalid stuff. */
+    write(-3, "foo", 3);
     close(-42);
     close(-4711);
     /* Can't test this, results in a segfault with the "normal" fclose(). */