Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
integration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
integration
Commits
6da73cce
Commit
6da73cce
authored
Jul 19, 2021
by
Jonah Husson
Browse files
Options
Downloads
Patches
Plain Diff
fix greps to ignore binary, comment out grpc verbosity
parent
8218b48a
Branches
Branches containing commit
No related tags found
1 merge request
!4
Release
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
basice2e/e2eReport.py
+0
-0
0 additions, 0 deletions
basice2e/e2eReport.py
basice2e/run.sh
+8
-8
8 additions, 8 deletions
basice2e/run.sh
with
8 additions
and
8 deletions
basice2e/e2eReport.py
100644 → 100755
+
0
−
0
View file @
6da73cce
File mode changed from 100644 to 100755
This diff is collapsed.
Click to expand it.
basice2e/run.sh
+
8
−
8
View file @
6da73cce
...
...
@@ -177,8 +177,8 @@ then
fi
export
GRPC_GO_LOG_VERBOSITY_LEVEL
=
99
export
GRPC_GO_LOG_SEVERITY_LEVEL
=
info
#
export GRPC_GO_LOG_VERBOSITY_LEVEL=99
#
export GRPC_GO_LOG_SEVERITY_LEVEL=info
echo
"RUNNING CLIENTS..."
...
...
@@ -319,10 +319,10 @@ while [ ! -s $CLIENTOUT/ben43-contact.bin ]; do
done
TMPID
=
$(
cat
$CLIENTOUT
/client42.log |
grep
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
TMPID
=
$(
cat
$CLIENTOUT
/client42.log |
grep
-a
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
RICKID
=
${
TMPID
}
echo
"RICK ID:
$RICKID
"
TMPID
=
$(
cat
$CLIENTOUT
/client43.log |
grep
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
TMPID
=
$(
cat
$CLIENTOUT
/client43.log |
grep
-a
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
BENID
=
${
TMPID
}
echo
"BEN ID:
$BENID
"
...
...
@@ -545,10 +545,10 @@ while [ ! -s $CLIENTOUT/client81-contact.bin ]; do
done
echo
TMPID
=
$(
cat
$CLIENTOUT
/client80.log |
grep
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
TMPID
=
$(
cat
$CLIENTOUT
/client80.log |
grep
-a
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
CLIENT80ID
=
${
TMPID
}
echo
"CLIENT 80 ID:
$CLIENT80ID
"
TMPID
=
$(
cat
$CLIENTOUT
/client81.log |
grep
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
TMPID
=
$(
cat
$CLIENTOUT
/client81.log |
grep
-a
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
CLIENT81ID
=
${
TMPID
}
echo
"CLIENT 81 ID:
$CLIENT81ID
"
...
...
@@ -573,7 +573,7 @@ while [ ! -s $CLIENTOUT/client82-contact.bin ]; do
done
echo
TMPID
=
$(
cat
$CLIENTOUT
/client82.log |
grep
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
TMPID
=
$(
cat
$CLIENTOUT
/client82.log |
grep
-a
"User
\:
"
|
awk
-F
' '
'{print $5}'
)
CLIENT82ID
=
${
TMPID
}
echo
"CLIENT 82 ID:
$CLIENT82ID
"
...
...
@@ -753,7 +753,7 @@ fi
if
[
"
$NETWORKENTRYPOINT
"
==
"localhost:8440"
]
then
#cat $CLIENTOUT/* | strings | grep -e "ERROR" -e "FATAL" > results/client-errors || true
#cat $CLIENTOUT/* | strings | grep -
a
e "ERROR" -e "FATAL" > results/client-errors || true
#diff -ruN results/client-errors.txt noerrors.txt
cat
$SERVERLOGS
/server-
*
.log |
grep
-a
"ERROR"
|
grep
-a
-v
"context"
|
grep
-av
"metrics"
|
grep
-av
"database"
>
results/server-errors.txt
||
true
cat
$SERVERLOGS
/server-
*
.log |
grep
-a
"FATAL"
|
grep
-a
-v
"context"
|
grep
-av
"transport is closing"
|
grep
-av
"database"
>>
results/server-errors.txt
||
true
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment