Skip to content

Commit

Permalink
Fix Regression Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Belano committed Dec 6, 2024
1 parent bcd3d7e commit e49b491
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ fault_injection_sim:
cd $@ && git checkout $(FAULT_SIM_COMMIT)

## Clone regression tests
REGRESSION_TESTS_REMOTE ?= https://github.com/pulp-platform/regression_tests.git
REGRESSION_TESTS_COMMIT ?= b1c3f82 # branch: astral
#REGRESSION_TESTS_REMOTE ?= https://github.com/pulp-platform/regression_tests.git
#REGRESSION_TESTS_COMMIT ?= b1c3f82 # branch: astral

regression-tests:
git clone $(REGRESSION_TESTS_REMOTE)
cd $@ && git checkout $(REGRESSION_TESTS_COMMIT)
cd $@ && git submodule update --init --recursive
#regression-tests:
# git clone $(REGRESSION_TESTS_REMOTE)
# cd $@ && git checkout $(REGRESSION_TESTS_COMMIT)
# cd $@ && git submodule update --init --recursive

########################
# Build and simulation #
Expand Down
6 changes: 6 additions & 0 deletions regression.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
## Clone regression tests for bare-metal verification
TARGET ?= pulp_cluster

## Clone regression tests
REGRESSION_TESTS_REMOTE ?= https://github.com/pulp-platform/regression_tests.git
REGRESSION_TESTS_COMMIT ?= b1c3f82 # branch: astral

regression-tests:
git clone $(REGRESSION_TESTS_REMOTE)
git checkout $(REGRESSION_TESTS_COMMIT)
git submodule update --init --recursive $@

.PHONY: test-rt-par-bare
Expand Down

0 comments on commit e49b491

Please sign in to comment.