Skip to content

Commit

Permalink
test: drop test-bin target
Browse files Browse the repository at this point in the history
The current default target in test/Makefile is `test-bin` [1] as this is
the first target in the makefile. This was unintentional change
introduced in [2]. The default target should be `all`.

However, `test-bin` does not appear to be used anywhere and thus, we can
remove it.

[1] https://www.gnu.org/software/make/manual/html_node/Rules.html
[2] checkpoint-restore#71

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
  • Loading branch information
rst0git committed Jun 24, 2022
1 parent bc6e263 commit ca96749
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export CRIU_FEATURE_MEM_TRACK CRIU_FEATURE_LAZY_PAGES CRIU_FEATURE_PIDFD_STORE
TEST_PAYLOAD := piggie/piggie
TEST_BINARIES := test $(TEST_PAYLOAD) phaul/phaul
COVERAGE_BINARIES := test.coverage phaul/phaul.coverage
test-bin: $(TEST_BINARIES)

all: $(TEST_BINARIES) phaul-test
mkdir -p image
Expand Down Expand Up @@ -79,4 +78,4 @@ clean:
@rm -f $(TEST_BINARIES) $(COVERAGE_BINARIES) codecov
@rm -rf image $(COVERAGE_PATH)

.PHONY: all clean coverage codecov phaul-test test-bin
.PHONY: all clean coverage codecov phaul-test

0 comments on commit ca96749

Please sign in to comment.