summaryrefslogtreecommitdiff
path: root/test cases/unit/118 genvslite/main.cpp
diff options
context:
space:
mode:
authorJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-08-01 15:33:41 +0300
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-08-01 16:52:03 +0300
commitbf9ff6e5eee7a5b7bfb2b50b0dc5bf948e87eaae (patch)
treed360be6801ff7b6315c724907c490979f8c7819e /test cases/unit/118 genvslite/main.cpp
parent550cf5ebcc395dfa78bfc31ee2abc1550a9ed349 (diff)
downloadmeson-bf9ff6e5eee7a5b7bfb2b50b0dc5bf948e87eaae.tar.gz
Condense test directory names for 1.9.
Diffstat (limited to 'test cases/unit/118 genvslite/main.cpp')
-rw-r--r--test cases/unit/118 genvslite/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/unit/118 genvslite/main.cpp b/test cases/unit/118 genvslite/main.cpp
new file mode 100644
index 000000000..ca250bdd6
--- /dev/null
+++ b/test cases/unit/118 genvslite/main.cpp
@@ -0,0 +1,10 @@
+#include<stdio.h>
+
+int main() {
+#ifdef NDEBUG
+ printf("Non-debug\n");
+#else
+ printf("Debug\n");
+#endif
+ return 0;
+}