From 727931ae6bb473b80e31a92f6900f8c412f6dc20 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 5 Apr 2018 13:15:36 -0400 Subject: [PATCH] tests: move bindings tests to using checked fixtures too. T6862 T6811 Reviewed-by: Cedric BAIL --- src/tests/ecore_cxx/ecore_cxx_suite.cc | 2 +- src/tests/eet_cxx/eet_cxx_suite.cc | 2 +- src/tests/eina_cxx/eina_cxx_suite.cc | 2 +- src/tests/eldbus_cxx/eldbus_cxx_suite.cc | 2 +- src/tests/eo_cxx/eo_cxx_suite.cc | 2 +- src/tests/eolian_cxx/eolian_cxx_suite.cc | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/tests/ecore_cxx/ecore_cxx_suite.cc b/src/tests/ecore_cxx/ecore_cxx_suite.cc index 33ed9b6..93b2685 100644 --- a/src/tests/ecore_cxx/ecore_cxx_suite.cc +++ b/src/tests/ecore_cxx/ecore_cxx_suite.cc @@ -21,7 +21,7 @@ main(int argc, char* argv[]) putenv(const_cast("EFL_RUN_IN_TREE=1")); failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1, - "Ecore C++", etc); + "Ecore C++", etc, NULL, NULL); return (failed_count == 0) ? 0 : 255; } diff --git a/src/tests/eet_cxx/eet_cxx_suite.cc b/src/tests/eet_cxx/eet_cxx_suite.cc index 4733af7..a2b443c 100644 --- a/src/tests/eet_cxx/eet_cxx_suite.cc +++ b/src/tests/eet_cxx/eet_cxx_suite.cc @@ -20,7 +20,7 @@ int main(int argc, char* argv[]) putenv(const_cast("EFL_RUN_IN_TREE=1")); failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1, - "Eet C++", etc); + "Eet C++", etc, NULL, NULL); return (failed_count == 0) ? 0 : 255; } diff --git a/src/tests/eina_cxx/eina_cxx_suite.cc b/src/tests/eina_cxx/eina_cxx_suite.cc index 6a03f22..a1a34ee 100644 --- a/src/tests/eina_cxx/eina_cxx_suite.cc +++ b/src/tests/eina_cxx/eina_cxx_suite.cc @@ -32,7 +32,7 @@ main(int argc, char* argv[]) putenv(const_cast("EFL_RUN_IN_TREE=1")); failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1, - "Eina C++", etc); + "Eina C++", etc, NULL, NULL); return (failed_count == 0) ? 0 : 255; } diff --git a/src/tests/eldbus_cxx/eldbus_cxx_suite.cc b/src/tests/eldbus_cxx/eldbus_cxx_suite.cc index ca15b77..d54502f 100644 --- a/src/tests/eldbus_cxx/eldbus_cxx_suite.cc +++ b/src/tests/eldbus_cxx/eldbus_cxx_suite.cc @@ -21,7 +21,7 @@ int main(int argc, char* argv[]) putenv(const_cast("EFL_RUN_IN_TREE=1")); failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1, - "Eldbus C++", etc); + "Eldbus C++", etc, NULL, NULL); return (failed_count == 0) ? 0 : 255; } diff --git a/src/tests/eo_cxx/eo_cxx_suite.cc b/src/tests/eo_cxx/eo_cxx_suite.cc index 2362d38..f947316 100644 --- a/src/tests/eo_cxx/eo_cxx_suite.cc +++ b/src/tests/eo_cxx/eo_cxx_suite.cc @@ -21,7 +21,7 @@ main(int argc, char* argv[]) putenv(const_cast("EFL_RUN_IN_TREE=1")); failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1, - "Eo C++", etc); + "Eo C++", etc, NULL, NULL); return (failed_count == 0) ? 0 : 255; } diff --git a/src/tests/eolian_cxx/eolian_cxx_suite.cc b/src/tests/eolian_cxx/eolian_cxx_suite.cc index 6a1b940..e30fc6e 100644 --- a/src/tests/eolian_cxx/eolian_cxx_suite.cc +++ b/src/tests/eolian_cxx/eolian_cxx_suite.cc @@ -28,7 +28,7 @@ main(int argc, char* argv[]) putenv(const_cast("EFL_RUN_IN_TREE=1")); failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1, - "Eolian C++", etc); + "Eolian C++", etc, NULL, NULL); return (failed_count == 0) ? 0 : 255; } -- 2.7.4