Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tests): make tests run locally (take 2) #2089

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ In case you want to run all the test suites at once, you can directly use the `r

```console
cd test
./run_regression_tests.sh -v
./run_regression_tests.sh -v -d ../build
```

Just make sure you followed all the previous setup steps.
2 changes: 0 additions & 2 deletions test/run_regression_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,7 @@ function run_tests() {
XUNIT_FILE_NAME="${XUNIT_DIR}/$(basename "${mult}").xml"
CMD="avocado run --xunit ${XUNIT_FILE_NAME} --mux-yaml $mult --job-results-dir $SCRIPTDIR/job-results -- $SCRIPTDIR/falco_test.py"
echo "Running $CMD"
pushd $TRACE_DIR > /dev/null
BUILD_DIR=${OPT_BUILD_DIR} $CMD
popd > /dev/null
RC=$?
TEST_RC=$((TEST_RC+RC))
if [ $RC -ne 0 ]; then
Expand Down