tests cxx: remove superfluous output to stdout
authorStefan Schmidt <stefan@osg.samsung.com>
Wed, 2 Mar 2016 14:32:09 +0000 (15:32 +0100)
committerStefan Schmidt <stefan@osg.samsung.com>
Wed, 2 Mar 2016 14:32:09 +0000 (15:32 +0100)
These outputs are not giving any more information besides what we already get:

Ecore C++ headers compilePASS: tests/ecore_cxx/cxx_compile_test

(Ignoring the problem with the newline) The test name tells it all and we are
just filling the log.

src/tests/ecore_audio_cxx/cxx_compile_test.cc
src/tests/ecore_cxx/cxx_compile_test.cc
src/tests/edje_cxx/cxx_compile_test.cc
src/tests/evas_cxx/cxx_compile_test.cc

index c1c3c4e..dfc4cd6 100644 (file)
@@ -9,6 +9,5 @@
 
 int main()
 {
-   std::cout << "Ecore Audio C++ headers compile";
    return 0;
 }
index e249317..3c3bd55 100644 (file)
@@ -8,6 +8,5 @@
 
 int main()
 {
-   std::cout << "Ecore C++ headers compile";
    return 0;
 }
index 3c0479c..33390ee 100644 (file)
@@ -9,6 +9,5 @@
 
 int main()
 {
-   std::cout << "Edje C++ headers compile";
    return 0;
 }
index d494ed6..ba354de 100644 (file)
@@ -10,6 +10,5 @@
 
 int main()
 {
-   std::cout << "Evas C++ headers compile";
    return 0;
 }