summaryrefslogtreecommitdiff
path: root/test/pseudo-tty/testcfg.py
diff options
context:
space:
mode:
authorMichael Dawson <michael_dawson@ca.ibm.com>2016-09-09 09:33:11 -0400
committerMichael Dawson <michael_dawson@ca.ibm.com>2016-09-12 09:51:11 -0400
commit1ffdbb6f423a7e1a3ae1f298e67c0f111443e629 (patch)
tree4a2b06b0162481e2ca89a77d6f64f4c5a21bc07e /test/pseudo-tty/testcfg.py
parent2d7fa3d741dfb5602c5d0afe4486e8da99602e6b (diff)
downloadandroid-node-v8-1ffdbb6f423a7e1a3ae1f298e67c0f111443e629.tar.gz
android-node-v8-1ffdbb6f423a7e1a3ae1f298e67c0f111443e629.tar.bz2
android-node-v8-1ffdbb6f423a7e1a3ae1f298e67c0f111443e629.zip
test: skip pseudo-tty/no_dropped_stdio test
We had marked it as flaky but in some failures it hangs and does not seem to timeout, and or is reported as an error. Also add prefix to status file as it was missing. Also fix name of status file in testcfg.py. It was pointing to message.status instead of pseudo-tty.status. PR-URL: https://github.com/nodejs/node/pull/8470 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Diffstat (limited to 'test/pseudo-tty/testcfg.py')
-rw-r--r--test/pseudo-tty/testcfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pseudo-tty/testcfg.py b/test/pseudo-tty/testcfg.py
index 4699031521..96b3025349 100644
--- a/test/pseudo-tty/testcfg.py
+++ b/test/pseudo-tty/testcfg.py
@@ -152,7 +152,7 @@ class TTYTestConfiguration(test.TestConfiguration):
return ['sample', 'sample=shell']
def GetTestStatus(self, sections, defs):
- status_file = join(self.root, 'message.status')
+ status_file = join(self.root, 'pseudo-tty.status')
if exists(status_file):
test.ReadConfigurationInto(status_file, sections, defs)