Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
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
MariaDB
Commits
3ee18c99
Commit
3ee18c99
authored
May 27, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bank
parent
a70eee10
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
58 additions
and
71 deletions
+58
-71
ndb/test/ndbapi/Makefile.am
ndb/test/ndbapi/Makefile.am
+0
-2
ndb/test/ndbapi/bank/Bank.cpp
ndb/test/ndbapi/bank/Bank.cpp
+51
-51
ndb/test/ndbapi/bank/BankLoad.cpp
ndb/test/ndbapi/bank/BankLoad.cpp
+6
-6
ndb/test/ndbapi/testBackup.cpp
ndb/test/ndbapi/testBackup.cpp
+0
-5
ndb/test/ndbapi/testGrep.cpp
ndb/test/ndbapi/testGrep.cpp
+1
-7
No files found.
ndb/test/ndbapi/Makefile.am
View file @
3ee18c99
...
...
@@ -9,7 +9,6 @@ create_tab \
flexAsynch
\
flexBench
\
flexHammer
\
flexScan
\
flexTT
\
testBackup
\
testBasic
\
...
...
@@ -40,7 +39,6 @@ drop_all_tabs_SOURCES = drop_all_tabs.cpp
flexAsynch_SOURCES
=
flexAsynch.cpp
flexBench_SOURCES
=
flexBench.cpp
flexHammer_SOURCES
=
flexHammer.cpp
flexScan_SOURCES
=
flexScan.cpp
flexTT_SOURCES
=
flexTT.cpp
#flexTimedAsynch_SOURCES = flexTimedAsynch.cpp
#flex_bench_mysql_SOURCES = flex_bench_mysql.cpp
...
...
ndb/test/ndbapi/bank/Bank.cpp
View file @
3ee18c99
...
...
@@ -670,15 +670,15 @@ int Bank::findLastGL(Uint64 &lastTime){
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdb
Operation
(
"GL"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScan
Operation
(
"GL"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanRead
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuples
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -698,7 +698,7 @@ int Bank::findLastGL(Uint64 &lastTime){
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
();
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -707,7 +707,7 @@ int Bank::findLastGL(Uint64 &lastTime){
int
eof
;
int
rows
=
0
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
lastTime
=
0
;
while
(
eof
==
0
){
...
...
@@ -717,7 +717,7 @@ int Bank::findLastGL(Uint64 &lastTime){
if
(
t
>
lastTime
)
lastTime
=
t
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
}
if
(
eof
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
...
...
@@ -1002,15 +1002,15 @@ int Bank::sumTransactionsForGL(const Uint64 glTime,
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdbOperation
(
"TRANSACTION"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScanOperation
(
"TRANSACTION"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanExclusive
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuplesExclusive
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -1051,7 +1051,7 @@ int Bank::sumTransactionsForGL(const Uint64 glTime,
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
();
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -1061,7 +1061,7 @@ int Bank::sumTransactionsForGL(const Uint64 glTime,
int
eof
;
int
rows
=
0
;
int
rowsFound
=
0
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
while
(
eof
==
0
){
rows
++
;
...
...
@@ -1085,7 +1085,7 @@ int Bank::sumTransactionsForGL(const Uint64 glTime,
}
}
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
if
((
rows
%
100
)
==
0
){
// "refresh" ownner transaction every 100th row
...
...
@@ -1162,15 +1162,15 @@ int Bank::performValidateGL(Uint64 glTime){
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdb
Operation
(
"GL"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScan
Operation
(
"GL"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanRead
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuples
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -1238,7 +1238,7 @@ int Bank::performValidateGL(Uint64 glTime){
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
();
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -1249,7 +1249,7 @@ int Bank::performValidateGL(Uint64 glTime){
int
rows
=
0
;
int
countGlRecords
=
0
;
int
result
=
NDBT_OK
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
while
(
eof
==
0
){
rows
++
;
...
...
@@ -1336,7 +1336,7 @@ int Bank::performValidateGL(Uint64 glTime){
}
}
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
}
if
(
eof
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
...
...
@@ -1426,15 +1426,15 @@ int Bank::getOldestPurgedGL(const Uint32 accountType,
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdb
Operation
(
"GL"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScan
Operation
(
"GL"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanRead
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuples
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -1468,7 +1468,7 @@ int Bank::getOldestPurgedGL(const Uint32 accountType,
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
();
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -1477,7 +1477,7 @@ int Bank::getOldestPurgedGL(const Uint32 accountType,
int
eof
;
int
rows
=
0
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
oldest
=
0
;
while
(
eof
==
0
){
...
...
@@ -1491,7 +1491,7 @@ int Bank::getOldestPurgedGL(const Uint32 accountType,
if
(
t
>
oldest
)
oldest
=
t
;
}
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
}
if
(
eof
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
...
...
@@ -1518,15 +1518,15 @@ int Bank::getOldestNotPurgedGL(Uint64 &oldest,
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdb
Operation
(
"GL"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScan
Operation
(
"GL"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanRead
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuples
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -1560,7 +1560,7 @@ int Bank::getOldestNotPurgedGL(Uint64 &oldest,
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
();
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -1569,7 +1569,7 @@ int Bank::getOldestNotPurgedGL(Uint64 &oldest,
int
eof
;
int
rows
=
0
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
oldest
=
(
Uint64
)
-
1
;
found
=
false
;
...
...
@@ -1586,7 +1586,7 @@ int Bank::getOldestNotPurgedGL(Uint64 &oldest,
accountTypeId
=
a
;
}
}
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
}
if
(
eof
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
...
...
@@ -1615,15 +1615,15 @@ int Bank::checkNoTransactionsOlderThan(const Uint32 accountType,
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdb
Operation
(
"TRANSACTION"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScan
Operation
(
"TRANSACTION"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanRead
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuples
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -1657,7 +1657,7 @@ int Bank::checkNoTransactionsOlderThan(const Uint32 accountType,
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
(
);
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -1667,7 +1667,7 @@ int Bank::checkNoTransactionsOlderThan(const Uint32 accountType,
int
eof
;
int
rows
=
0
;
int
found
=
0
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
while
(
eof
==
0
){
rows
++
;
...
...
@@ -1683,7 +1683,7 @@ int Bank::checkNoTransactionsOlderThan(const Uint32 accountType,
<<
" ti = "
<<
ti
<<
endl
;
found
++
;
}
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
}
if
(
eof
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
...
...
@@ -1859,15 +1859,15 @@ int Bank::findTransactionsToPurge(const Uint64 glTime,
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdb
Operation
(
"TRANSACTION"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScan
Operation
(
"TRANSACTION"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanExclusive
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuplesExclusive
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -1894,7 +1894,7 @@ int Bank::findTransactionsToPurge(const Uint64 glTime,
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
(
);
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -1904,7 +1904,7 @@ int Bank::findTransactionsToPurge(const Uint64 glTime,
int
eof
;
int
rows
=
0
;
int
rowsFound
=
0
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
while
(
eof
==
0
){
rows
++
;
...
...
@@ -1914,8 +1914,8 @@ int Bank::findTransactionsToPurge(const Uint64 glTime,
if
(
a
==
accountType
&&
t
==
glTime
){
rowsFound
++
;
// One record found
NdbOperation
*
pDelOp
=
pOp
->
takeOverForDelet
e
(
pTrans
);
if
(
pDelOp
==
NULL
){
check
=
rs
->
deleteTupl
e
(
pTrans
);
if
(
check
==
-
1
){
ERR
(
m_ndb
.
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -1929,7 +1929,7 @@ int Bank::findTransactionsToPurge(const Uint64 glTime,
return
NDBT_FAILED
;
}
}
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
}
if
(
eof
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
...
...
@@ -2348,15 +2348,15 @@ int Bank::getSumAccounts(Uint32 &sumAccounts,
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdb
Operation
(
"ACCOUNT"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScan
Operation
(
"ACCOUNT"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanExclusive
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuplesExclusive
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -2376,7 +2376,7 @@ int Bank::getSumAccounts(Uint32 &sumAccounts,
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
(
);
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -2391,7 +2391,7 @@ int Bank::getSumAccounts(Uint32 &sumAccounts,
}
int
eof
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
while
(
eof
==
0
){
Uint32
b
=
balanceRec
->
u_32_value
();
...
...
@@ -2403,7 +2403,7 @@ int Bank::getSumAccounts(Uint32 &sumAccounts,
// << ", sum="<< sumAccounts << endl;
// Take over the operation so that the lock is kept in db
NdbOperation
*
pLockOp
=
pOp
->
takeOverForUpdat
e
(
pTrans
);
NdbOperation
*
pLockOp
=
rs
->
updateTupl
e
(
pTrans
);
if
(
pLockOp
==
NULL
){
ERR
(
m_ndb
.
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -2429,7 +2429,7 @@ int Bank::getSumAccounts(Uint32 &sumAccounts,
return
NDBT_FAILED
;
}
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
}
if
(
eof
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
...
...
ndb/test/ndbapi/bank/BankLoad.cpp
View file @
3ee18c99
...
...
@@ -335,15 +335,15 @@ int Bank::getBalanceForAccountType(const Uint32 accountType,
return
NDBT_FAILED
;
}
Ndb
Operation
*
pOp
=
pScanTrans
->
getNdb
Operation
(
"ACCOUNT"
);
Ndb
ScanOperation
*
pOp
=
pScanTrans
->
getNdbScan
Operation
(
"ACCOUNT"
);
if
(
pOp
==
NULL
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
}
check
=
pOp
->
openScanRead
(
64
);
if
(
check
==
-
1
)
{
NdbResultSet
*
rs
=
pOp
->
readTuples
(
);
if
(
rs
==
0
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
return
NDBT_FAILED
;
...
...
@@ -370,7 +370,7 @@ int Bank::getBalanceForAccountType(const Uint32 accountType,
return
NDBT_FAILED
;
}
check
=
pScanTrans
->
execute
Scan
();
check
=
pScanTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
m_ndb
.
closeTransaction
(
pScanTrans
);
...
...
@@ -379,7 +379,7 @@ int Bank::getBalanceForAccountType(const Uint32 accountType,
int
eof
;
int
rows
=
0
;
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
while
(
eof
==
0
){
rows
++
;
...
...
@@ -391,7 +391,7 @@ int Bank::getBalanceForAccountType(const Uint32 accountType,
balance
+=
b
;
}
eof
=
pScanTrans
->
nextScan
Result
();
eof
=
rs
->
next
Result
();
}
if
(
eof
==
-
1
)
{
ERR
(
pScanTrans
->
getNdbError
());
...
...
ndb/test/ndbapi/testBackup.cpp
View file @
3ee18c99
...
...
@@ -205,8 +205,6 @@ int runClearTable(NDBT_Context* ctx, NDBT_Step* step){
return
NDBT_OK
;
}
#if 0
#include "bank/Bank.hpp"
int
runCreateBank
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
){
...
...
@@ -395,7 +393,6 @@ int runRestoreBankAndVerify(NDBT_Context* ctx, NDBT_Step* step){
return
result
;
}
#endif
NDBT_TESTSUITE
(
testBackup
);
TESTCASE
(
"BackupOne"
,
...
...
@@ -413,7 +410,6 @@ TESTCASE("BackupOne",
FINALIZER
(
runClearTable
);
}
#if 0
TESTCASE
(
"BackupBank"
,
"Test that backup and restore works during transaction load
\n
"
" by backing up the bank"
...
...
@@ -433,7 +429,6 @@ TESTCASE("BackupBank",
VERIFIER
(
runRestoreBankAndVerify
);
// FINALIZER(runDropBank);
}
#endif
TESTCASE
(
"NFMaster"
,
"Test that backup behaves during node failiure
\n
"
){
INITIALIZER
(
setMaster
);
...
...
ndb/test/ndbapi/testGrep.cpp
View file @
3ee18c99
...
...
@@ -254,9 +254,7 @@ int runClearTable(NDBT_Context* ctx, NDBT_Step* step){
return
NDBT_OK
;
}
#if 0
#include "../bank/Bank.hpp"
#include "bank/Bank.hpp"
int
runCreateBank
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
){
Bank
bank
;
...
...
@@ -445,7 +443,6 @@ int runRestoreBankAndVerify(NDBT_Context* ctx, NDBT_Step* step){
return result;
}
*/
#endif
NDBT_TESTSUITE
(
testGrep
);
TESTCASE
(
"GrepBasic"
,
...
...
@@ -476,8 +473,6 @@ TESTCASE("GrepNodeRestart",
}
#if 0
TESTCASE
(
"GrepBank"
,
"Test that grep and restore works during transaction load
\n
"
" by backing up the bank"
...
...
@@ -498,7 +493,6 @@ TESTCASE("GrepBank",
// FINALIZER(runDropBank);
}
#endif
TESTCASE
(
"NFMaster"
,
"Test that grep behaves during node failiure
\n
"
){
...
...
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