summaryrefslogtreecommitdiffstats
path: root/tests/driver/exitcode_warn_error_always.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/driver/exitcode_warn_error_always.c')
-rw-r--r--tests/driver/exitcode_warn_error_always.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/driver/exitcode_warn_error_always.c b/tests/driver/exitcode_warn_error_always.c
new file mode 100644
index 0000000..b1e08f7
--- /dev/null
+++ b/tests/driver/exitcode_warn_error_always.c
@@ -0,0 +1,32 @@
+//===--- exitcode_warn_error_always.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_always
+
+// When --error_always is provided, IWYU exits with error whether or not there
+// are IWYU violations. See exitcode_good_error_always.c for complementary
+// testcase where there are no violations.
+
+#include "tests/driver/direct.h"
+
+// IWYU: Indirect is...*indirect.h
+struct Indirect x;
+
+/**** IWYU_SUMMARY(1)
+
+tests/driver/exitcode_warn_error_always.c should add these lines:
+#include "tests/driver/indirect.h"
+
+tests/driver/exitcode_warn_error_always.c should remove these lines:
+- #include "tests/driver/direct.h" // lines XX-XX
+
+The full include-list for tests/driver/exitcode_warn_error_always.c:
+#include "tests/driver/indirect.h" // for Indirect
+
+***** IWYU_SUMMARY */