Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
test: use more node, fix some
Browse files Browse the repository at this point in the history
  • Loading branch information
tharvik committed Mar 4, 2020
1 parent e9a750d commit a88ea8d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/client_network-new
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
start_nodes

client_gen_network |
grep -F 'localhost:' | wc -l | xargs test 4 -eq
grep -F 'localhost:' | wc -l | xargs test $((node_count + 1)) -eq
2 changes: 1 addition & 1 deletion test/client_select-correct-column
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ start_nodes providing
client survey set-sources col2 |
client survey set-operation sum
) | client survey run |
xargs -t test $(((4+5+6) * (node_count-1))) -eq
xargs test $(((4+5+6) * (node_count-1))) -eq
2 changes: 1 addition & 1 deletion test/client_select-two-correct-columns
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ start_nodes providing
client survey set-sources col{1,3} |
client survey set-operation cosim
) | client survey run |
xargs -t test -0.9999999999999999 =
xargs test -1 =
2 changes: 1 addition & 1 deletion test/lib.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set -eumo pipefail

readonly node_count=3
readonly node_count=5
readonly host_name=localhost

tmpdir=$(mktemp -d)
Expand Down

0 comments on commit a88ea8d

Please sign in to comment.