tests: move bindings tests to using checked fixtures too.

T6862
T6811

Reviewed-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Mike Blumenkrantz 2018-04-05 13:15:36 -04:00 committed by Cedric BAIL
parent 2a512b72f0
commit 978901903d
6 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@ main(int argc, char* argv[])
putenv(const_cast<char*>("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;
}

View File

@ -20,7 +20,7 @@ int main(int argc, char* argv[])
putenv(const_cast<char*>("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;
}

View File

@ -32,7 +32,7 @@ main(int argc, char* argv[])
putenv(const_cast<char*>("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;
}

View File

@ -21,7 +21,7 @@ int main(int argc, char* argv[])
putenv(const_cast<char*>("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;
}

View File

@ -21,7 +21,7 @@ main(int argc, char* argv[])
putenv(const_cast<char*>("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;
}

View File

@ -28,7 +28,7 @@ main(int argc, char* argv[])
putenv(const_cast<char*>("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;
}