From 99cd2fcb109d6ceb672250138dfc0675df37b59b Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Wed, 11 Jan 2023 16:51:13 +0700 Subject: [PATCH] show message if `test_c` and `test_cpp` ran successfully --- test/test.c | 3 +++ test/test.cpp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/test/test.c b/test/test.c index 4cce7f6..e9a0a23 100644 --- a/test/test.c +++ b/test/test.c @@ -1,3 +1,6 @@ +#include + int main() { + printf("all ok\n"); return 0; } diff --git a/test/test.cpp b/test/test.cpp index 4cce7f6..c36cbb6 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -1,3 +1,6 @@ +#include + int main() { + std::cout << "all ok" << std::endl; return 0; }