From: Jouni Malinen Date: Tue, 23 Dec 2014 18:34:13 +0000 (+0200) Subject: tests: Add more long duration test cases to parallel-vm.py list X-Git-Tag: hostap_2_4~680 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a628eeb42b60b6e38ee97ff58f4e1013aae043ce;p=thirdparty%2Fhostap.git tests: Add more long duration test cases to parallel-vm.py list This adds the remaining test cases that took more than 15 seconds to run into the list of test cases to run at the beginning of the execution to avoid these being left at the end when only some of the VMs may be running. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/vm/parallel-vm.py b/tests/hwsim/vm/parallel-vm.py index c7a8d9b61..e23ea80e6 100755 --- a/tests/hwsim/vm/parallel-vm.py +++ b/tests/hwsim/vm/parallel-vm.py @@ -170,19 +170,38 @@ def main(): # optimization to avoid last part of the test execution running a long # duration test case on a single VM while all other VMs have already # completed their work. - long = [ "ap_wps_pbc_timeout", - "grpform_cred_ready_timeout", - "discovery_pd_retries", - "ibss_wpa_none", + long = [ "ap_roam_open", + "ap_hs20_fetch_osu_stop", + "ap_roam_wpa2_psk", + "ibss_wpa_none_ccmp", + "nfc_wps_er_handover_pk_hash_mismatch_sta", + "go_neg_peers_force_diff_freq", + "p2p_cli_invite", + "sta_ap_scan_2b", + "ap_pmf_sta_unprot_deauth_burst", + "ap_bss_add_remove_during_ht_scan", + "wext_scan_hidden", + "autoscan_exponential", + "nfc_p2p_client", + "wnm_bss_keep_alive", + "ap_inactivity_disconnect", + "scan_bss_expiration_age", + "autoscan_periodic", + "discovery_group_client", "concurrent_p2pcli", + "ap_bss_add_remove", "wpas_ap_wps", - "ibss_rsn", "wext_pmksa_cache", + "ibss_wpa_none", "ap_ht_40mhz_intolerant_ap", + "ibss_rsn", + "discovery_pd_retries", "ap_wps_setup_locked_timeout", "ap_vht160", "dfs_radar", - "dfs" ] + "dfs", + "grpform_cred_ready_timeout", + "ap_wps_pbc_timeout" ] for l in long: if l in tests: tests.remove(l)