tests - let's have our own enforced master timeout of 240sec

let's not let check defaults decide. let us decide for everything with
one var. also timeout.c matches too... so 2 places i guess for now.
This commit is contained in:
Carsten Haitzler 2024-01-09 08:14:42 +00:00
parent d6d0caa46c
commit f9e8839125
18 changed files with 37 additions and 19 deletions

View File

@ -110,9 +110,11 @@ efl_app_suite = executable('efl_app_suite',
)
test('ecore-suite', ecore_suite,
env : test_env
env : test_env,
timeout : master_timeout
)
test('efl-app', efl_app_suite,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -16,5 +16,6 @@ ecore_con_suite = executable('ecore_con_suite',
)
test('ecore_con-suite', ecore_con_suite,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -27,5 +27,6 @@ ecore_wl2_suite = executable('ecore_wl2_suite',
)
test('ecore_wl2-suite', ecore_wl2_suite,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -25,5 +25,6 @@ edje_suite = executable('edje_suite',
)
test('edje-suite', edje_suite,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -23,5 +23,6 @@ eet_suite = executable('eet_suite',
)
test('eet-suite', eet_suite,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -16,5 +16,6 @@ eeze_suite = executable('eeze_suite',
)
test('eeze-suite', eeze_suite,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -14,5 +14,6 @@ efl_suite_bin = executable('efl_suite',
)
test('efl-suite', efl_suite_bin,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -15,7 +15,8 @@ efreet_suite = executable('efreet_suite',
)
test('efreet-suite', efreet_suite,
env : test_env
env : test_env,
timeout : master_timeout
)
efreet_test_src = [

View File

@ -72,4 +72,5 @@ eina_test_exe = executable('eina_suite',
test('eina', eina_test_exe,
env : test_env,
timeout : master_timeout
)

View File

@ -26,5 +26,5 @@ eio_suite = executable('eio_suite',
test('eio-suite', eio_suite,
env : test_env,
timeout : 120
timeout : master_timeout
)

View File

@ -29,4 +29,5 @@ eldbus_suite = executable('eldbus_suite',
test('eldbus-suite', eldbus_suite,
env : test_env,
timeout : master_timeout
)

View File

@ -193,11 +193,13 @@ executable('efl_ui_window_cnp_dnd_slave',
)
test('elementary-suite', elementary_suite,
env : test_env
env : test_env,
timeout : master_timeout
)
test('efl-ui-suite', efl_ui_suite,
env : test_env
env : test_env,
timeout : master_timeout
)
install_data(files(['testdiff.diff', 'testfile-windows.txt', 'testfile-withblanks.txt', 'testfile.txt']),

View File

@ -45,5 +45,5 @@ efl_ui_behavior_suite = executable('efl_ui_spec_suite',
test('efl_ui_spec-suite', efl_ui_behavior_suite,
env : test_env,
timeout: 60
timeout: master_timeout
)

View File

@ -14,5 +14,6 @@ emile_suite = executable('emile_suite',
)
test('emile-suite', emile_suite,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -30,7 +30,8 @@ eo_suite = executable('eo_suite',
)
test('eo-suite', eo_suite,
env : test_env
env : test_env,
timeout : master_timeout
)
eo_suite = executable('eo_suite_dbg',
@ -43,7 +44,8 @@ eo_suite = executable('eo_suite_dbg',
)
test('eo-suite-dbg', eo_suite,
env : test_env
env : test_env,
timeout : master_timeout
)
eo_suite = executable('eo_suite_fallback',
@ -57,5 +59,6 @@ eo_suite = executable('eo_suite_fallback',
)
test('eo-suite-fallback', eo_suite,
env : test_env
env : test_env,
timeout : master_timeout
)

View File

@ -35,5 +35,5 @@ evas_suite = executable('evas_suite',
test('evas-suite', evas_suite,
env : test_env,
timeout: 60,
timeout : master_timeout
)

View File

@ -1 +1,2 @@
master_timeout = 240
executable('timeout', 'timeout.c')

View File

@ -10,6 +10,6 @@
int
main(int arc, char *argv[])
{
sleep(60);
sleep(240);
return 0;
}