[sanitizer_common] Add tests for more *putc and *getc variants

Add tests for the more character-oriented functions, that is:
- fputc(), putc() and putchar()
- getc_unlocked()
- putc_unlocked() and putchar_unlocked()

Differential Revision: https://reviews.llvm.org/D56152

llvm-svn: 350229
This commit is contained in:
Michal Gorny 2019-01-02 17:36:55 +00:00
parent bb1137da12
commit eebec78b05
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// RUN: %clangxx -g %s -o %t && %run %t | FileCheck %s
// CHECK: abc
#include <assert.h>
#include <stdio.h>
int main(void) {
assert(fputc('a', stdout) != EOF);
assert(putc('b', stdout) != EOF);
assert(putchar('c') != EOF);
return 0;
}

View File

@ -0,0 +1,20 @@
// RUN: %clangxx -g %s -o %t && %run %t
#include <assert.h>
#include <stdio.h>
int main(int argc, char **argv) {
FILE *fp = fopen(argv[0], "r");
assert(fp);
// the file should be at least one character long, always
assert(getc_unlocked(fp) != EOF);
// POSIX guarantees being able to ungetc() at least one character
// NB: ungetc_unlocked is apparently not present
assert(ungetc('X', fp) != EOF);
// check whether ungetc() works with getc_unlocked()
assert(getc_unlocked(fp) == 'X');
assert(!fclose(fp));
return 0;
}

View File

@ -0,0 +1,12 @@
// RUN: %clangxx -g %s -o %t && %run %t | FileCheck %s
// CHECK: bc
#include <assert.h>
#include <stdio.h>
int main(void) {
assert(putc_unlocked('b', stdout) != EOF);
assert(putchar_unlocked('c') != EOF);
return 0;
}