summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CTest/cmCTestTypes.h')
-rw-r--r--Source/CTest/cmCTestTypes.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestTypes.h b/Source/CTest/cmCTestTypes.h
new file mode 100644
index 0000000..843d27a
--- /dev/null
+++ b/Source/CTest/cmCTestTypes.h
@@ -0,0 +1,16 @@
+/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
+ file Copyright.txt or https://cmake.org/licensing for details. */
+
+#pragma once
+
+#include "cmConfigure.h" // IWYU pragma: keep
+
+namespace cmCTestTypes {
+
+enum class TruncationMode
+{ // Test output truncation mode
+ Tail,
+ Middle,
+ Head
+};
+}