Skip to content

Commit

Permalink
[DO NOT MERGE] Debug memcached test
Browse files Browse the repository at this point in the history
Signed-off-by: Wojtek Porczyk <[email protected]>
  • Loading branch information
woju committed Sep 18, 2024
1 parent 8d339c1 commit b6ec216
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/lib/stage-test-direct.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ stage('test-direct') {
# memcslap populates server but doesn't report errors, use
# memcached-tool for this (must return two lines of stats)
memcslap --servers=127.0.0.1 --concurrency=8
src/scripts/memcached-tool 127.0.0.1 | wc -l | grep -w "2"
src/scripts/memcached-tool 127.0.0.1 | tee /dev/stderr | wc -l | grep -w "2"
'''
}
timeout(time: 10, unit: 'MINUTES') {
Expand Down
2 changes: 1 addition & 1 deletion .ci/lib/stage-test-sgx.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ stage('test-sgx') {
# memcslap populates server but doesn't report errors, use
# memcached-tool for this (must return two lines of stats)
memcslap --servers=127.0.0.1 --concurrency=8
src/scripts/memcached-tool 127.0.0.1 | wc -l | grep -w "2"
src/scripts/memcached-tool 127.0.0.1 | tee /dev/stderr | wc -l | grep -w "2"
'''
}
timeout(time: 15, unit: 'MINUTES') {
Expand Down

0 comments on commit b6ec216

Please sign in to comment.