Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
slapos
Commits
9c20234a
Commit
9c20234a
authored
Feb 10, 2016
by
Ivan Tyagov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean ups.
parent
a0aa60de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
software/neoppod/runTestSuite.in
software/neoppod/runTestSuite.in
+8
-2
No files found.
software/neoppod/runTestSuite.in
View file @
9c20234a
...
...
@@ -6,6 +6,7 @@ import argparse, sys, subprocess, os, glob
import traceback
from erp5.util import taskdistribution
import re
from time import gmtime, strftime
# pattern to get test counts from stdout
SUMMARY_RE = re.compile( \
...
...
@@ -100,6 +101,7 @@ def main():
# run NEO tests
test_result_line = test_result.start()
# XXX: add '-z' - i.e. ZODB tests when find out why it stalled execution.
args = [RUN_NEO_TESTS_COMMAND, '-ufv']
command = ' '.join(args)
...
...
@@ -118,11 +120,15 @@ def main():
command=command,
stderr=traceback.format_exc(),
stdout='')
# XXX: inform test node master of error
raise EnvironmentError(result)
# parse test stdout / stderr, hint to speed up use files first!
stdout = p.stdout.read()
date = strftime("%Y/%m/%d %H:%M:%S", gmtime())
test_count, error_count, expected_count, skip_count, duration = parseTestStdOut(stdout)
# print to stdout so we can see in testnode logs
print test_result_line
print stdout
...
...
@@ -133,10 +139,10 @@ def main():
failure_count = expected_count,
skip_count = skip_count,
duration = duration,
date =
None, # XXX: date when test run or when finished ?
date =
date,
command = command,
stdout= stdout,
stderr=
'stderr', # XXX:catch it
stderr=
None,
html_test_result='')
if __name__ == "__main__":
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment