Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
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
Joshua
wendelin.core
Commits
af23a7b7
Commit
af23a7b7
authored
Mar 03, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
d28f449e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
bigfile/tests/test_filezodb.py
bigfile/tests/test_filezodb.py
+3
-0
wcfs/client/client_test.py
wcfs/client/client_test.py
+2
-2
wcfs/client/wcfs.cpp
wcfs/client/wcfs.cpp
+1
-1
No files found.
bigfile/tests/test_filezodb.py
View file @
af23a7b7
...
@@ -632,6 +632,9 @@ def test_bigfile_filezodb_fmt_change():
...
@@ -632,6 +632,9 @@ def test_bigfile_filezodb_fmt_change():
file_zodb
.
ZBlk_fmt_write
=
src_fmt
file_zodb
.
ZBlk_fmt_write
=
src_fmt
struct
.
pack_into
(
'p'
,
vma
,
0
,
b
(
src_fmt
))
struct
.
pack_into
(
'p'
,
vma
,
0
,
b
(
src_fmt
))
# FIXME wcfs: currently hangs with fs1 because zconn_at gives
# future tid for empty commit (when we do `ZBlk1 -> ZBlk1` in
# `ZBlk0 -> ZBlk1 | ZBlk1 -> ZBlk0`.
transaction
.
commit
()
transaction
.
commit
()
assert
type
(
f
.
blktab
[
0
])
is
src_type
assert
type
(
f
.
blktab
[
0
])
is
src_type
...
...
wcfs/client/client_test.py
View file @
af23a7b7
...
@@ -28,8 +28,8 @@ wcfs.py/wcfs.go while running tox tests in wcfs mode.
...
@@ -28,8 +28,8 @@ wcfs.py/wcfs.go while running tox tests in wcfs mode.
from
__future__
import
print_function
,
absolute_import
from
__future__
import
print_function
,
absolute_import
from
golang
import
func
,
defer
from
golang
import
func
,
defer
from
..wcfs_test
import
tDB
,
tAt
# XXX -> absolute
from
wendelin.wcfs.wcfs_test
import
tDB
,
tAt
from
..
import
wcfs_test
# XXX -> absolute
from
wendelin.wcfs
import
wcfs_test
# XXX so that e.g. testdb is set up + ...
# XXX so that e.g. testdb is set up + ...
def
setup_module
():
wcfs_test
.
setup_module
()
def
setup_module
():
wcfs_test
.
setup_module
()
...
...
wcfs/client/wcfs.cpp
View file @
af23a7b7
...
@@ -183,7 +183,7 @@ using std::max;
...
@@ -183,7 +183,7 @@ using std::max;
using
std
::
vector
;
using
std
::
vector
;
#define TRACE
1
#define TRACE
0
#if TRACE
#if TRACE
# define trace(format, ...) log::Debugf(format, ##__VA_ARGS__)
# define trace(format, ...) log::Debugf(format, ##__VA_ARGS__)
#else
#else
...
...
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