tests: Use logdir for config file in wpas_config_file

This reduces use of /tmp for test case specific dynamically created
files.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2017-01-07 22:30:50 +02:00
parent 54736d8358
commit ddff4f3c5e

View file

@ -40,11 +40,18 @@ def check_config(config):
raise Exception("Missing ip_addr_end")
return data
def test_wpas_config_file(dev):
def test_wpas_config_file(dev, apdev, params):
"""wpa_supplicant config file parsing/writing"""
config = "/tmp/test_wpas_config_file.conf"
config = os.path.join(params['logdir'], 'wpas_config_file.conf')
if os.path.exists(config):
os.remove(config)
try:
os.remove(config)
except:
pass
try:
os.rmdir(config)
except:
pass
wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
try:
@ -147,14 +154,6 @@ def test_wpas_config_file(dev):
raise Exception("SAVE_CONFIG (global) succeeded unexpectedly")
finally:
try:
os.remove(config)
except:
pass
try:
os.remove(config + ".tmp")
except:
pass
try:
os.rmdir(config)
except: