aboutsummaryrefslogtreecommitdiffstats
path: root/executor/style_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'executor/style_test.go')
-rw-r--r--executor/style_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/executor/style_test.go b/executor/style_test.go
index 488752626..f6f5856f3 100644
--- a/executor/style_test.go
+++ b/executor/style_test.go
@@ -44,6 +44,24 @@ if (foo)
},
},
{
+ pattern: `#define __NR_`,
+ message: "Don't define syscall __NR_foo constants.\n" +
+ "These should be guarded by #ifndef __NR_foo, but this is dependent on the host " +
+ "and may break on other machines (after pkg/csource processing).\n" +
+ "Define sys_foo constants instead.",
+ tests: []string{
+ `
+#ifndef __NR_io_uring_setup
+#ifdef __alpha__
+#define __NR_io_uring_setup 535
+#else // !__alpha__
+#define __NR_io_uring_setup 425
+#endif
+#endif // __NR_io_uring_setup
+`,
+ },
+ },
+ {
pattern: `//[^\s]`,
suppression: `https?://`,
message: "Add a space after //",