Skip to content

Commit

Permalink
Merge pull request #669 from keithc-ca/empty
Browse files Browse the repository at this point in the history
Fix tests for empty strings in _setup
  • Loading branch information
smlambert authored Feb 1, 2025
2 parents a88d7bb + c82fbb9 commit ec65590
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions settings.mk
Original file line number Diff line number Diff line change
Expand Up @@ -380,19 +380,12 @@ setup_%: testEnvSetup
@$(ECHO) set JDK_IMPL to $(JDK_IMPL)
@$(ECHO) set JVM_VERSION to $(JVM_VERSION)
@$(ECHO) set JCL_VERSION to $(JCL_VERSION)
@if [ $(OLD_JAVA_HOME) ]; then \
$(ECHO) JAVA_HOME was originally set to $(OLD_JAVA_HOME); \
fi
@$(if $(OLD_JAVA_HOME),$(ECHO) JAVA_HOME was originally set to $(OLD_JAVA_HOME))
@$(ECHO) set JAVA_HOME to $(JAVA_HOME)
@$(ECHO) set SPEC to $(SPEC)
@$(ECHO) set TEST_FLAG to $(TEST_FLAG)
@if [ $(MICROARCH) ]; then \
$(ECHO) set MICROARCH to $(MICROARCH); \
fi
@if [ $(OS_LABEL) ]; then \
$(ECHO) set OS_LABEL to $(OS_LABEL); \
fi

@$(if $(MICROARCH),$(ECHO) set MICROARCH to $(MICROARCH))
@$(if $(OS_LABEL),$(ECHO) set OS_LABEL to $(OS_LABEL))
@$(MKTREE) $(Q)$(TESTOUTPUT)$(Q)
@$(CP) $(Q)$(TEST_ROOT)$(D)TKG$(D)SHAs.txt$(Q) $(Q)$(TESTOUTPUT)$(D)$(Q)
@$(ECHO) Running $(TESTTARGET) ...
Expand Down

0 comments on commit ec65590

Please sign in to comment.