Commit ff8bd199 authored by Kirill Smelkov's avatar Kirill Smelkov

*: Cosmetics

parent 068f97c0
...@@ -9,9 +9,9 @@ for kind in ['t', 'fault', 'asan', 'tsan']: ...@@ -9,9 +9,9 @@ for kind in ['t', 'fault', 'asan', 'tsan']:
t = 'test.%s' % kind t = 'test.%s' % kind
envadj = {} envadj = {}
# test.fault: on Ubuntu, when apport is registerd in /proc/sys/kernel/core_pattern, # test.fault: on Ubuntu, when apport is registered in /proc/sys/kernel/core_pattern,
# it is apport which is run to process core. Apport dumps core for us, but # it is apport which is run to process core. Apport dumps core for us, but
# rejects to run in parralel with the following message in its log: # rejects to run in parallel with the following message in its log:
# ERROR: apport ...: another apport instance is already running, aborting # ERROR: apport ...: another apport instance is already running, aborting
# this way, when test.fault tests are run in parallel, some of them fail to # this way, when test.fault tests are run in parallel, some of them fail to
# find core corresponding to expected crash. # find core corresponding to expected crash.
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include "../../t/t_utils.h" #include "../../t/t_utils.h"
#include "../../t/t_utils.c" #include "../../t/t_utils.c"
/* test_vmamap verifies addr -> VMA lookup. */
void test_vmamap() void test_vmamap()
{ {
VMA vma1, vma2, vma3; VMA vma1, vma2, vma3;
...@@ -805,6 +805,7 @@ void test_file_access_synthetic(void) ...@@ -805,6 +805,7 @@ void test_file_access_synthetic(void)
CHECK_MRU (page2, page0, page3); CHECK_MRU (page2, page0, page3);
CHECK_DIRTY (/*empty*/); CHECK_DIRTY (/*empty*/);
/* invalidation */
diag("invalidate"); diag("invalidate");
mkdirty2(); mkdirty2();
......
...@@ -293,7 +293,7 @@ def test_zconn_at(): ...@@ -293,7 +293,7 @@ def test_zconn_at():
assert zconn_at(conn2) == at0 assert zconn_at(conn2) == at0
# reopen conn2 -> view upated to @at1_ # reopen conn2 -> view updated to @at1_
conn2.close() conn2.close()
conn2_ = db.open(transaction_manager=tm1) conn2_ = db.open(transaction_manager=tm1)
assert conn2_ is conn2 # from DB pool assert conn2_ is conn2 # from DB pool
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment