tests: fix closing xterm window

sh -s option in dash prevent shell to terminate after command from -c
ends. So remove this option.
这个提交包含在:
Marek Marczykowski-Górecki 2016-06-24 12:29:08 +02:00
父节点 3cb717dced
当前提交 ba0a01afba
找不到此签名对应的密钥
GPG 密钥 ID: 063938BA42CFA724

查看文件

@ -1057,8 +1057,8 @@ class TC_20_DispVMMixin(qubes.tests.SystemTestsMixin):
try:
window_title = 'user@%s' % (dispvm.template.name + "-dvm")
p.stdin.write("xterm -e "
"\"sh -s -c 'echo \\\"\033]0;{}\007\\\";read x;'\"\n".
format(window_title))
"\"sh -c 'echo \\\"\033]0;{}\007\\\";read x;'\"\n".
format(window_title))
self.wait_for_window(window_title)
time.sleep(0.5)