mirror of
https://github.com/openjdk/jdk.git
synced 2026-03-29 17:20:18 +00:00
Merge
This commit is contained in:
commit
88dfd18385
@ -62,7 +62,7 @@ endif
|
||||
$(LIBJSIG): $(JSIGSRCDIR)/jsig.c $(LIBJSIG_MAPFILE)
|
||||
@echo $(LOG_INFO) Making signal interposition lib...
|
||||
$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
|
||||
$(LFLAGS_JSIG) $(JSIG_DEBUG_CFLAGS) -o $@ $<
|
||||
$(LFLAGS_JSIG) $(JSIG_DEBUG_CFLAGS) $(EXTRA_CFLAGS) -o $@ $<
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(OS_VENDOR), Darwin)
|
||||
$(DSYMUTIL) $@
|
||||
|
||||
@ -35,7 +35,7 @@ public class TestBasicLogOutput {
|
||||
public static void main(String[] args) throws Exception {
|
||||
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xlog:all=trace", "-version");
|
||||
OutputAnalyzer output = new OutputAnalyzer(pb.start());
|
||||
output.shouldContain("[logging]"); // expected tag(s)
|
||||
output.shouldMatch("\\[logging *\\]"); // expected tag(s)
|
||||
output.shouldContain("Log configuration fully initialized."); // expected message
|
||||
output.shouldHaveExitValue(0);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user