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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos
Commits
4cff265a
Commit
4cff265a
authored
Mar 03, 2020
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NEO: safer quotes in runTestSuite
parent
47c56e99
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
software/neoppod/buildout.hash.cfg
software/neoppod/buildout.hash.cfg
+1
-1
software/neoppod/runTestSuite.in
software/neoppod/runTestSuite.in
+4
-4
No files found.
software/neoppod/buildout.hash.cfg
View file @
4cff265a
...
...
@@ -46,4 +46,4 @@ md5sum = 5afd326de385563b5aeac81039f23341
[runTestSuite.in]
_update_hash_filename_ = runTestSuite.in
md5sum =
6f60a4804dc3749d0fd2997ca4a33cc9
md5sum =
d724ca0d54dda15bba68b8a87f0e4544
software/neoppod/runTestSuite.in
View file @
4cff265a
...
...
@@ -13,12 +13,12 @@ SUMMARY_RE = re.compile(
r' (.*) (?P<duration>\d+(\.\d*)?|\.\d+)s', re.MULTILINE)
PATH = os.environ['PATH']
PATH =
'{{ prepend_path }}'
+ (PATH and ':' + PATH)
PATH =
{{ repr(prepend_path) }}
+ (PATH and ':' + PATH)
# NEO specific environment
TEMP_DIRECTORY =
'{{directory.tmp}}'
NEO_DB_SOCKET =
'{{my_cnf_parameters.socket}}'
RUN_NEO_TESTS_COMMAND =
'{{ bin_directory }}/neotestrunner'
TEMP_DIRECTORY =
{{ repr(directory.tmp) }}
NEO_DB_SOCKET =
{{ repr(my_cnf_parameters.socket) }}
RUN_NEO_TESTS_COMMAND =
{{ repr(bin_directory + '/neotestrunner') }}
def parseTestStdOut(data):
"""
...
...
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