diff options
author | unknown <joreland@mysql.com> | 2004-12-03 15:02:07 +0100 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2004-12-03 15:02:07 +0100 |
commit | b1f4a482f4545999d6210aabdc2c0a80ee574374 (patch) | |
tree | 777d1b2465c8e58860870daabbf0a591c8f701af /ndb | |
parent | abb1963df346dc271d4f33e74535a44cc9f56fd4 (diff) | |
download | mariadb-git-b1f4a482f4545999d6210aabdc2c0a80ee574374.tar.gz |
ndb - fix in test suite
ndb/test/src/NDBT_Test.cpp:
clear threads when finished waiting
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/test/src/NDBT_Test.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ndb/test/src/NDBT_Test.cpp b/ndb/test/src/NDBT_Test.cpp index 1434617c988..bbbde008938 100644 --- a/ndb/test/src/NDBT_Test.cpp +++ b/ndb/test/src/NDBT_Test.cpp @@ -519,6 +519,7 @@ void NDBT_TestCaseImpl1::waitSteps(){ NdbThread_WaitFor(threads[i], &status); NdbThread_Destroy(&threads[i]); } + threads.clear(); } |