Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
nexedi
ZODB
Commits
71c685b0
Commit
71c685b0
authored
Apr 22, 2003
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable another pack test that can't work with the current implementation.
parent
568ce784
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
19 deletions
+8
-19
src/ZODB/tests/testFileStorage.py
src/ZODB/tests/testFileStorage.py
+8
-19
No files found.
src/ZODB/tests/testFileStorage.py
View file @
71c685b0
...
...
@@ -189,10 +189,14 @@ class FileStorageTests(
self
.
assert_
(
filecmp
.
cmp
(
"FileStorageTests.fs"
,
"fsrecover.fs"
))
StorageTestBase
.
removefs
(
"fsrecover.fs"
)
# There are a bunch of tests that the current pack() implementation
# does not past. We need to fix pack(), but don't want tests to
# fail until then.
def
checkPackVersionsInPast
(
self
):
# FileStorage can't cope with backpointers to object
s
# created in versions. Should fix if we can figure out actually how
# to fix it.
pas
s
def
checkPackAfterUndoDeletion
(
self
):
pass
class
FileStorageRecoveryTest
(
...
...
@@ -225,20 +229,5 @@ def test_suite():
suite
.
addTest
(
suite3
)
return
suite
def
main
():
alltests
=
test_suite
()
runner
=
unittest
.
TextTestRunner
()
runner
.
run
(
alltests
)
def
debug
():
test_suite
().
debug
()
def
pdebug
():
import
pdb
pdb
.
run
(
'debug()'
)
if
__name__
==
'__main__'
:
if
len
(
sys
.
argv
)
>
1
:
globals
()[
sys
.
argv
[
1
]]()
else
:
main
()
unittest
.
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