From 3ed42ce968ea1186d28fb32adde9256e5a542d5c Mon Sep 17 00:00:00 2001 From: Fabian Arrotin Date: Apr 17 2020 16:40:30 +0000 Subject: Merge pull request #53 from Conan-Kudo/fix-annobin-test tests/p_annobin: Specify the language to the compiler --- diff --git a/tests/p_annobin/10-test_annobin-gcc.sh b/tests/p_annobin/10-test_annobin-gcc.sh index 2ea50bc..2b6e3af 100755 --- a/tests/p_annobin/10-test_annobin-gcc.sh +++ b/tests/p_annobin/10-test_annobin-gcc.sh @@ -12,7 +12,7 @@ t_Log "Running $0 - build a hello world program with gcc using annobin" BUILTPROG=$(mktemp) -cat < int main() { printf("Hello World!\n"); diff --git a/tests/p_annobin/20-test_annobin-gcc-c++.sh b/tests/p_annobin/20-test_annobin-gcc-c++.sh index 0f55a75..761cdf3 100755 --- a/tests/p_annobin/20-test_annobin-gcc-c++.sh +++ b/tests/p_annobin/20-test_annobin-gcc-c++.sh @@ -12,7 +12,7 @@ t_Log "Running $0 - build a hello world program with gcc-c++ using annobin" BUILTPROG=$(mktemp) -cat < int main() { std::cout << "Hello World!\n";