Skip to content

Commit

Permalink
chore: fix bash style
Browse files Browse the repository at this point in the history
  • Loading branch information
josedonizetti committed Feb 12, 2024
1 parent 107a98e commit 9ff652e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions tests/e2e-kernel-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ set -e
make -j$(nproc) all
set +e
if [[ ! -x ./dist/tracee ]]; then
error_exit "could not find tracee executables"
error_exit "could not find tracee executable"
fi

# if any test has failed
Expand All @@ -82,8 +82,8 @@ for TEST in $TESTS; do
--cache cache-type=mem \
--cache mem-cache-size=512 \
--output json \
--scope container=new 2>&1 |
tee $SCRIPT_TMP_DIR/build-$$ 2>&1 &
--scope container=new 2>&1 \
| tee "$SCRIPT_TMP_DIR/build-$$" &

# wait tracee to be started (30 sec most)
times=0
Expand Down
6 changes: 3 additions & 3 deletions tests/e2e-net-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ make -j$(nproc) all
make e2e-net-signatures
set +e
if [[ ! -x ./dist/tracee ]]; then
error_exit "could not find tracee executables"
error_exit "could not find tracee executable"
fi

# if any test has failed
Expand All @@ -93,8 +93,8 @@ for TEST in $TESTS; do
--cache mem-cache-size=512 \
--output json \
--scope comm=ping,nc,nslookup,isc-net-0000,isc-worker0000,curl \
--signatures-dir ./dist/e2e-net-signatures/ 2>&1 |
tee $SCRIPT_TMP_DIR/build-$$ 2>&1 &
--signatures-dir ./dist/e2e-net-signatures/ 2>&1 \
| tee "$SCRIPT_TMP_DIR/build-$$" &

# wait tracee to be started (30 sec most)
times=0
Expand Down

0 comments on commit 9ff652e

Please sign in to comment.