[clang-tidy] bugprone-not-null-terminated-result: checker adjustments 3

On Windows the signed/unsigned int conversions of APInt seems broken, so that
two of the test files marked as unsupported on Windows, as a hotfix.

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@374713 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/clang-tidy/bugprone-not-null-terminated-result-strlen.c b/test/clang-tidy/bugprone-not-null-terminated-result-strlen.c
index 48f8c27..ea9d46a 100644
--- a/test/clang-tidy/bugprone-not-null-terminated-result-strlen.c
+++ b/test/clang-tidy/bugprone-not-null-terminated-result-strlen.c
@@ -1,6 +1,11 @@
 // RUN: %check_clang_tidy %s bugprone-not-null-terminated-result %t -- \
 // RUN: -- -std=c11 -I %S/Inputs/bugprone-not-null-terminated-result
 
+// FIXME: Something wrong with the APInt un/signed conversion on Windows:
+// in 'strncmp(str6, "string", 7);' it tries to inject '4294967302' as length.
+
+// UNSUPPORTED: system-windows
+
 #include "not-null-terminated-result-c.h"
 
 #define __STDC_LIB_EXT1__ 1
diff --git a/test/clang-tidy/bugprone-not-null-terminated-result-wcslen.cpp b/test/clang-tidy/bugprone-not-null-terminated-result-wcslen.cpp
index b8ac76c..5edb413 100644
--- a/test/clang-tidy/bugprone-not-null-terminated-result-wcslen.cpp
+++ b/test/clang-tidy/bugprone-not-null-terminated-result-wcslen.cpp
@@ -1,6 +1,11 @@
 // RUN: %check_clang_tidy %s bugprone-not-null-terminated-result %t -- \
 // RUN: -- -std=c++11 -I %S/Inputs/bugprone-not-null-terminated-result
 
+// FIXME: Something wrong with the APInt un/signed conversion on Windows:
+// in 'wcsncmp(wcs6, L"string", 7);' it tries to inject '4294967302' as length.
+
+// UNSUPPORTED: system-windows
+
 #include "not-null-terminated-result-cxx.h"
 
 #define __STDC_LIB_EXT1__ 1