From: Jouni Malinen Date: Thu, 23 Jul 2015 17:48:33 +0000 (+0300) Subject: tests: Fix ap_wps_wpa_cli_action outside VM X-Git-Tag: hostap_2_5~319 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8936b095eaa5b39a5b8d51f8f27443166e36a913;p=thirdparty%2Fhostap.git tests: Fix ap_wps_wpa_cli_action outside VM Pass absolute path to the daemonized wpa_cli process and add read privileges for everyone on the action script to make this test case work better when run without a VM. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_wps.py b/tests/hwsim/test_ap_wps.py index 4890ab9fc..a69c493d8 100644 --- a/tests/hwsim/test_ap_wps.py +++ b/tests/hwsim/test_ap_wps.py @@ -2726,12 +2726,10 @@ def _test_ap_wps_er_oom(dev, apdev): def test_ap_wps_wpa_cli_action(dev, apdev, test_params): """WPS events and wpa_cli action script""" - pidfile = os.path.join(test_params['logdir'], - 'ap_wps_wpa_cli_action.wpa_cli.pid') - logfile = os.path.join(test_params['logdir'], - 'ap_wps_wpa_cli_action.wpa_cli.res') - actionfile = os.path.join(test_params['logdir'], - 'ap_wps_wpa_cli_action.wpa_cli.action.sh') + logdir = os.path.abspath(test_params['logdir']) + pidfile = os.path.join(logdir, 'ap_wps_wpa_cli_action.wpa_cli.pid') + logfile = os.path.join(logdir, 'ap_wps_wpa_cli_action.wpa_cli.res') + actionfile = os.path.join(logdir, 'ap_wps_wpa_cli_action.wpa_cli.action.sh') with open(actionfile, 'w') as f: f.write('#!/bin/sh\n') @@ -2741,7 +2739,8 @@ def test_ap_wps_wpa_cli_action(dev, apdev, test_params): # eloop SIGALRM signal has been scheduled. f.write('if [ $2 = "WPS-SUCCESS" -a -r %s ]; then kill `cat %s`; sleep 1; fi\n' % (pidfile, pidfile)) - os.chmod(actionfile, stat.S_IREAD | stat.S_IEXEC) + os.chmod(actionfile, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC | + stat.S_IRGRP | stat.S_IXGRP | stat.S_IROTH | stat.S_IXOTH) ssid = "test-wps-conf" hostapd.add_ap(apdev[0]['ifname'],