You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
885 B
25 lines
885 B
// RUN: %check_clang_tidy %s abseil-no-namespace %t -- -- -I %S/Inputs
|
|
// RUN: clang-tidy -checks='-*, abseil-no-namespace' -header-filter='.*' %s -- -I %S/Inputs 2>&1 | FileCheck %s
|
|
|
|
/// Warning will not be triggered on internal Abseil code that is included.
|
|
#include "absl/strings/internal-file.h"
|
|
// CHECK-NOT: warning:
|
|
|
|
/// Warning will be triggered on code that is not internal that is included.
|
|
#include "absl/external-file.h"
|
|
// CHECK: absl/external-file.h:1:11: warning: namespace 'absl' is reserved
|
|
|
|
namespace absl {}
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:11: warning: namespace 'absl' is reserved for implementation of the Abseil library and should not be opened in user code [abseil-no-namespace]
|
|
|
|
namespace absl {
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:11: warning: namespace 'absl'
|
|
namespace std {
|
|
int i = 5;
|
|
}
|
|
}
|
|
|
|
// Things that shouldn't trigger the check
|
|
int i = 5;
|
|
namespace std {}
|