summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorILYA Khlopotov <iilyak@apache.org>2018-08-15 04:10:31 -0700
committerILYA Khlopotov <iilyak@apache.org>2018-08-15 15:40:42 -0700
commit72174812decea875707f0b0d61c8b8dbfab66260 (patch)
tree88ce2eb5017a32c1150e5b925bc99b652255ea06
parentfbe98b6defcbd004fe76831c108f9367c67b68e3 (diff)
downloadcouchdb-72174812decea875707f0b0d61c8b8dbfab66260.tar.gz
Remove special handling of 'restart' from 'test/javascript/run'
-rwxr-xr-xtest/javascript/run6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/javascript/run b/test/javascript/run
index ca69e1ff2..a3b3ab704 100755
--- a/test/javascript/run
+++ b/test/javascript/run
@@ -85,11 +85,7 @@ def run_couchjs(test, fmt):
if not line:
break
line = line.decode()
- if line.strip() == "restart":
- sys.stdout.write("reboot_nodes(ctx)" + os.linesep)
- sys.stdout.flush()
- else:
- sys.stderr.write(line)
+ sys.stderr.write(line)
p.wait()
fmt(p.returncode == 0)
return p.returncode