Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v92-bugfix' into v9-minor
Browse files Browse the repository at this point in the history
  • Loading branch information
scip-ci committed Nov 4, 2024
2 parents b60f02d + 13eb65d commit bb86183
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ Build system

- attempted to fix detection of CPLEX library on macOS and Windows systems

Testing
-------

- added parameter FILTER for tests/Makefile to run only tests with a specific pattern (ctest with -R FILTER)

Miscellaneous
-------------

Expand Down
4 changes: 2 additions & 2 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ endif
.PHONY: all
all: Criterion $(OBJDIR) $(OBJDIRS) $(BINDIRS) $(UNITTESTSBIN)
make ctestrunner
setarch `uname -m` -R ctest --output-on-failure
setarch `uname -m` -R ctest --output-on-failure $(if $(FILTER), -R $(FILTER))

.PHONY: lint
lint: $(UNITTESTSSRC)
Expand All @@ -200,7 +200,7 @@ $(BINDIRS):
.PHONY: test
test: $(UNITTESTSBIN)
make ctestrunner
setarch `uname -m` -R ctest --output-on-failure
setarch `uname -m` -R ctest --output-on-failure $(if $(FILTER), -R $(FILTER))

.PHONY: ctestrunner
ctestrunner: $(UNITTESTSBIN)
Expand Down
6 changes: 5 additions & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,14 @@ This creates `CTestTestfile.cmake` with a list of the test to run and then calls
make BUGS=true
```

You can also run a single test, e.g. `
You can also run a single test, e.g.
```
>> ./bin/cons/quadratic/gauge.linux.x86_64.gnu.dbg.spx2
```
To run all tests that match a regular expression, use
```
>> make FILTER=gauge
```

Note, that parameterized tests will not work on systems that have address
space layout randomization (ASLR) enabled. One can disable ASLR for a
Expand Down

0 comments on commit bb86183

Please sign in to comment.