Skip to content

Commit

Permalink
Add test.Custom target to openjdk.build/maklefile - issue adoptium#11
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Rushton <rushton@uk.ibm.com>
  • Loading branch information
Simon Rushton committed Sep 28, 2017
1 parent a042418 commit 0b36722
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions openjdk.build/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,14 @@ test.LambdaLoadTest:
$(STF_COMMAND) -test=LambdaLoadTest $(LOG)
echo Target $@ completed

# The test.Custom target enables users to execute arbitrary stf.pl command lines if required for investigating failures.
# Example:
# make test.Custom TEST=JdiTest TEST_ARGS="test=basic_launch"
test.Custom:
echo Running target $@
$(STF_COMMAND) -test=$(TEST) -test-args="$(TEST_ARGS)" $(LOG)
echo Target $@ completed

help:
@echo make or make build: Builds openjdk-systemtest projects
@echo make test: Runs all openjdk-systemtest tests
Expand Down

0 comments on commit 0b36722

Please sign in to comment.