summaryrefslogtreecommitdiffstats
path: root/tests/driver/exitcode_warn_error.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/driver/exitcode_warn_error.c')
-rw-r--r--tests/driver/exitcode_warn_error.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/driver/exitcode_warn_error.c b/tests/driver/exitcode_warn_error.c
new file mode 100644
index 0000000..60fc1e3
--- /dev/null
+++ b/tests/driver/exitcode_warn_error.c
@@ -0,0 +1,31 @@
+//===--- exitcode_warn_error.c - test input file for iwyu -----------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+// IWYU_ARGS: -I . -Xiwyu --error
+
+// When --error is provided, IWYU exits with error if analysis finds IWYU
+// violations. Default exit code is 1.
+
+#include "tests/driver/direct.h"
+
+// IWYU: Indirect is...*indirect.h
+struct Indirect x;
+
+/**** IWYU_SUMMARY(1)
+
+tests/driver/exitcode_warn_error.c should add these lines:
+#include "tests/driver/indirect.h"
+
+tests/driver/exitcode_warn_error.c should remove these lines:
+- #include "tests/driver/direct.h" // lines XX-XX
+
+The full include-list for tests/driver/exitcode_warn_error.c:
+#include "tests/driver/indirect.h" // for Indirect
+
+***** IWYU_SUMMARY */