summaryrefslogtreecommitdiffstats
path: root/slobrok
Commit message (Collapse)AuthorAgeFilesLines
* count failed heartbeatsArne H Juul2017-05-115-3/+12
|
* only produce warnings when there are unexpected collisionsArne H Juul2017-05-031-17/+15
|
* Add missing fileHenning Baldersheim2017-05-021-0/+28
|
* Fix warnings hidden earlier due to including application headers as system ↵Henning Baldersheim2017-05-022-18/+6
| | | | includes
* misc cleanup from BaldersheimArne H Juul2017-05-026-39/+17
| | | | | | | * include file cleanup * only do LOG_SETUP as needed * remove "virtual" where "override" is specified also * some minor reformatting and indentation changes
* Revert "Balder/enforce override 2"Arne H Juul2017-04-246-17/+39
|
* Use overrideHenning Baldersheim2017-04-236-39/+17
|
* add override in slobrok moduleArne H Juul2017-04-107-11/+11
|
* Use overrideHenning Baldersheim2017-04-043-11/+1
|
* OverrideHenning Baldersheim2017-04-0417-67/+44
|
* Increase number of allowed files to 64k.Henning Baldersheim2017-03-132-9/+3
| | | | | Sacrifice accuracy of size to 64 bytes. This only affect memory representation.
* Create explicit, non implicitly inlined function definitionsTor Brede Vekterli2017-03-132-0/+4
|
* Implement a default destructor to avoid the automatic inlining of large ↵Henning Baldersheim2017-03-082-10/+13
| | | | destructors.
* NULL -> nullptrHenning Baldersheim2017-01-131-6/+6
|
* Let getStash return a reference.Henning Baldersheim2017-01-131-2/+2
|
* Use EXPECT_EQUALHenning Baldersheim2017-01-131-1/+1
|
* Now the destructor will actually be run.Henning Baldersheim2017-01-131-15/+5
|
* Oops, same syntax -> different semantics.Henning Baldersheim2017-01-131-4/+4
|
* replace memorytub with Stash.Henning Baldersheim2017-01-131-2/+2
|
* md5 had to move too.Henning Baldersheim2017-01-051-0/+1
|
* Do not include fastos.h in header files.Henning Baldersheim2016-12-194-3/+1
|
* Avoid pulling in all of slobrok and config everywhere.Henning Baldersheim2016-12-123-61/+76
|
* Include asciistream in implementation only.Henning Baldersheim2016-12-122-12/+9
|
* Targeted includeHenning Baldersheim2016-12-121-5/+4
|
* add bracesArne H Juul2016-11-141-1/+2
|
* wait for slobrok server to start firstArne H Juul2016-11-141-5/+12
| | | | | | * since the SlobrokServer is started asynchronously in a different thread it may not be ready immediately. Add a loop retrying the initial connect to stabilize unit test.
* We only need one vtagHenning Baldersheim2016-10-218-292/+248
|
* switch back to ASSERTArne H Juul2016-10-071-72/+109
| | | | | | * if test fails, we want to avoid continuing to a possible segfault * use RAII for exception-safe cleanup * do not print failure details about requests that are expected to fail
* follow-up code reviewArne H Juul2016-10-071-2/+2
|
* remove too-complicated testArne H Juul2016-10-0610-476/+0
|
* more information if unit test failsArne H Juul2016-10-062-165/+188
|
* Added more dependencies to be able to compile and test in parallell.Arnstein Ressem2016-08-251-1/+1
|
* Name dependencies for script tests.Arnstein Ressem2016-08-241-1/+2
|
* Aressem/cmake more out of source tests (#441)Arnstein Ressem2016-08-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * vespalib tests run out of source. * staging_vespalib run tests out of source. * fastos tests run out of source. * Fixed storage tests out of source. * Fixed some of the config tests. * config* tests run out of source. * document_* tests run out of source. * documentapi_ tests run out of source. * Fixed fsa out of source tests. * Fix jrt_test out of source. * More tests run out of source. * Fix some slobrok and messagebus tests. * More fixes for out of source tests. * Done with first pass of regular tests out of source. * Only use SOURCE_DIRECTORY in a limited set of places. * Fix some remaining tests. * Some cleanups. * No need for extra slash.
* Fail test scripts on first error (#194)Vegard Sjonfjell2016-06-285-5/+10
| | | | | | | | | | | | | | | | * Fail test scripts on first error * Some more test fixes * Reverted prod_features_test fix * Re-added prod_features_test.sh change matching that of PR #193 * More error checking * Reverted set -e on failing tests * Enable errexit in lowercasing test
* simplify slobrok dependencies (#214)Arne H Juul2016-06-248-7/+1
| | | | | * the slobrokserver library needs classes from the slobrok client / utility library. Modules that just want the server shouldn't need to worry about that explicitly.
* This one will never trigger....Henning Baldersheim2016-06-231-1/+1
| | | | | | | | | I got this one with gcc 6.1. /home/balder/git/vespa/slobrok/src/vespa/slobrok/server/rpchooks.cpp: In member function 'void slobrok::RPCHooks::rpc_wantAdd(FRT_RPCRequest*)': /home/balder/git/vespa/slobrok/src/vespa/slobrok/server/rpchooks.cpp:355:24: error: comparison of constant '1' with boolean expression is always false [-Werror=bool-compare] if (state.failed() > 1) { ~~~~~~~~~~~~~~~^~~
* remove redundant ignoring of Testing directoriesHaavard2016-06-231-1/+0
|
* disable timing-sensitive testArne Juul2016-06-161-1/+0
| | | | | | | | * it seems this test almost always fails now (under heavy load). Mostly works OK when run alone, so it's probably just timing sensitive. Disable it temporarily until I can figure out if it's something that was there from earlier (hidden by problem in old way of running tests), something introduced now, etc and get it fixed.
* Merge pull request #30 from yahoo/arnej/avoid-spurious-slobrok-errorHenning Baldersheim2016-06-163-7/+42
|\ | | | | more careful checking
| * more careful checkingArne Juul2016-06-163-7/+42
| | | | | | | | | | | | * wait for ready, not just random sleep time * wait for actual stop, not just random sleep time * return status of actual test
* | Declared test executables as tests with TEST parameterVegard Sjonfjell2016-06-168-9/+9
|/
* PublishJon Bratseth2016-06-15122-0/+9415