Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
ac4a4fec
Commit
ac4a4fec
authored
11 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Patches
Plain Diff
[test-suite] Sorry if I screamed at you. Don't scream back please.
parent
8afa17cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/lib/test_suite.py
+3
-3
3 additions, 3 deletions
test/lib/test_suite.py
with
3 additions
and
3 deletions
test/lib/test_suite.py
+
3
−
3
View file @
ac4a4fec
...
...
@@ -174,11 +174,11 @@ class Test:
check_valgrind_log
(
server
.
valgrind_log
)
==
False
elif
self
.
skip
:
color_stdout
(
"
[
SKIP
]
\n
"
,
fgcolor
=
'
grey
'
)
color_stdout
(
"
[
skip
]
\n
"
,
fgcolor
=
'
grey
'
)
if
os
.
path
.
exists
(
self
.
tmp_result
):
os
.
remove
(
self
.
tmp_result
)
elif
self
.
is_executed_ok
and
self
.
is_equal_result
and
self
.
is_valgrind_clean
:
color_stdout
(
"
[
PASS
]
\n
"
,
fgcolor
=
'
green
'
)
color_stdout
(
"
[
pass
]
\n
"
,
fgcolor
=
'
green
'
)
if
os
.
path
.
exists
(
self
.
tmp_result
):
os
.
remove
(
self
.
tmp_result
)
elif
(
self
.
is_executed_ok
and
not
self
.
is_equal_result
and
not
...
...
@@ -330,7 +330,7 @@ class TestSuite:
if
(
test_name
in
self
.
ini
[
"
disabled
"
]
or
not
self
.
server
.
debug
and
test_name
in
self
.
ini
[
"
release_disabled
"
]
or
self
.
args
.
valgrind
and
test_name
in
self
.
ini
[
"
valgrind_disabled
"
]):
color_stdout
(
"
[
DISABLED
]
\n
"
,
fgcolor
=
'
grey
'
)
color_stdout
(
"
[
disabled
]
\n
"
,
fgcolor
=
'
grey
'
)
else
:
test
.
run
(
self
.
server
)
if
not
test
.
passed
():
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment