-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from pulp-platform/rt/fix-regression-flow
Fix regression flow to automate test execution locally
- Loading branch information
Showing
2 changed files
with
31 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## Clone regression tests for bare-metal verification | ||
regression-tests: | ||
git clone https://github.com/pulp-platform/regression_tests.git $@ | ||
cd $@; git checkout 6d31694ab395aa7d35daaaea10a7bb66811118bf; cd $(ROOT_DIR) | ||
|
||
.PHONY: test-rt-par-bare | ||
## Run only parallel tests on pulp-runtime | ||
test-rt-par-bare: pulp-runtime regression-tests | ||
cd $(REGRESSIONS) && $(bwruntest) --proc-verbose -v \ | ||
-t 3600 --yaml --max-procs 2 \ | ||
-o $(REGRESSIONS)/carfield/runtime-parallel.xml $(REGRESSIONS)/parallel-bare-tests.yaml | ||
|
||
.PHONY: test-rt-mchan | ||
## Run mchan tests on pulp-runtime | ||
test-rt-mchan: pulp-runtime regression-tests | ||
cd $(REGRESSIONS) && $(bwruntest) --proc-verbose -v \ | ||
-t 7200 --yaml --max-procs 2 \ | ||
-o $(REGRESSIONS)/carfield/runtime-mchan.xml $(REGRESSIONS)/pulp_cluster-mchan-tests.yaml | ||
|
||
.PHONY: test-rt-carfield | ||
## Run Carfield tests on pulp-runtime | ||
test-rt-carfield: pulp-runtime regression-tests | ||
cd $(REGRESSIONS) && $(bwruntest) --proc-verbose -v \ | ||
-t 3600 --yaml --max-procs 2 \ | ||
-o $(REGRESSIONS)/carfield/runtime-mchan.xml $(REGRESSIONS)/carfield.yaml |