Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Sep 8, 2024
1 parent 07c5c02 commit 96b7873
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .aux/test_with_lcg
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ CMTCONFIG=$2
source /cvmfs/sft.cern.ch/lcg/views/${LCG}/${CMTCONFIG}/setup.sh
source build/INSTALL/thisostap.sh
cd build
ctest -N && cmake .. -DCMAKE_INSTALL_PREFIX=./INSTALL/ && ctest -j4 -R --output-on-failure --test-output-size-failed=5000000
ctest -N && cmake .. -DCMAKE_INSTALL_PREFIX=./INSTALL/ && ctest -j4 -R _io_ '--output-on-failure --test-output-size-failed=5000000
4 changes: 2 additions & 2 deletions ostap/io/compress_shelve.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def __init__(
# =====================================================================
the_path = lambda s : os.path.normpath ( os.path.abspath ( s ) )
## all files before dbopen
ofiles = set ( [ the_path ( i ) for i in glob.iglob ( self.dbname + '*' ) ] )
ofiles = set ( [ the_path ( i ) for i in glob.iglob ( self.dbname + '*' ) ] )
ofiles |= set ( [ the_path ( i ) for i in glob.iglob ( self.dbname + '/*' ) ] )

self.__ofiles = tuple ( sorted ( ofiles ) )
Expand Down Expand Up @@ -275,7 +275,7 @@ def __init__(
efiles = set ( the_path ( f ) for f in dbfiles ( self.dbtype , self.dbname ) )

if ( ofiles | efiles ) != pfiles :
logger.warning ( 'Some missing or unexpected files' )
logger.warning ( 'Some missing or unexpected files [%s]' % self.dbtype )

files1 = pfiles & efiles ## expected and found
files2 = efiles - pfiles ## expected but not found
Expand Down

0 comments on commit 96b7873

Please sign in to comment.