[clang-tidy] Use more widely available headers for protability-restrict-system-includes-check's test

This commit is contained in:
Paula Toth 2020-03-10 16:52:57 -07:00
parent 4cba668ac1
commit 54928ba0ec
3 changed files with 17 additions and 17 deletions

View File

@ -1,9 +1,9 @@
// RUN: %check_clang_tidy %s portability-restrict-system-includes %t \
// RUN: -- -config="{CheckOptions: [{key: portability-restrict-system-includes.Includes, value: '*,-stdio.h'}]}"
// RUN: -- -config="{CheckOptions: [{key: portability-restrict-system-includes.Includes, value: '*,-stddef.h'}]}"
// Test block-list functionality: allow all but stdio.h.
// Test block-list functionality: allow all but stddef.h.
#include <stdio.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include stdio.h not allowed
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include stddef.h not allowed
#include <stdint.h>
#include <float.h>

View File

@ -1,10 +1,10 @@
// RUN: %check_clang_tidy %s portability-restrict-system-includes %t \
// RUN: -- -config="{CheckOptions: [{key: portability-restrict-system-includes.Includes, value: '-*,stdio.h'}]}"
// RUN: -- -config="{CheckOptions: [{key: portability-restrict-system-includes.Includes, value: '-*,stddef.h'}]}"
// Test allow-list functionality: disallow all but stdio.h.
// Test allow-list functionality: disallow all but stddef.h.
#include <stdio.h>
#include <stdlib.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include stdlib.h not allowed
#include <string.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include string.h not allowed
#include <stddef.h>
#include <stdint.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include stdint.h not allowed
#include <float.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include float.h not allowed

View File

@ -4,7 +4,7 @@
// Test glob functionality: disallow all headers except those that match
// pattern "std*.h".
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include string.h not allowed
#include <stddef.h>
#include <stdint.h>
#include <float.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include float.h not allowed