mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 18:11:19 +00:00
[clang-tidy] Use more widely available headers for protability-restrict-system-includes-check's test
This commit is contained in:
parent
4cba668ac1
commit
54928ba0ec
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user