2015-03-03 03:34:27 +08:00
|
|
|
// RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
|
2014-05-08 20:04:01 +08:00
|
|
|
|
|
|
|
#include <assert.h>
|
2017-10-26 05:40:17 +08:00
|
|
|
#include <locale.h>
|
2014-05-08 20:04:01 +08:00
|
|
|
#include <sanitizer/msan_interface.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
char q[10];
|
2017-10-26 05:40:17 +08:00
|
|
|
size_t n = strxfrm(q, "abcdef", sizeof(q));
|
|
|
|
assert(n < sizeof(q));
|
|
|
|
__msan_check_mem_is_initialized(q, n + 1);
|
|
|
|
|
|
|
|
locale_t loc = newlocale(LC_ALL_MASK, "", (locale_t)0);
|
|
|
|
|
|
|
|
__msan_poison(&q, sizeof(q));
|
|
|
|
n = strxfrm_l(q, "qwerty", sizeof(q), loc);
|
2014-05-08 20:04:01 +08:00
|
|
|
assert(n < sizeof(q));
|
|
|
|
__msan_check_mem_is_initialized(q, n + 1);
|
|
|
|
return 0;
|
|
|
|
}
|