/
githubmirror
/
jtreg
Обзор
Документация
Войти
/
githubmirror
/
jtreg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/basic/ReportOnlyTest.gmk
73 строки
3 KB
Jaikiran Pai
7903193: [jtreg] build and test failures using JDK 18
21 окт 2024, 15:27
21 окт 2024, 15:27
857ed61
Код
Авторство
О чём код?
# # Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation. Oracle designates this # particular file as subject to the "Classpath" exception as provided # by Oracle in the LICENSE file that accompanied this code. # # This code is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # version 2 for more details (a copy is included in the LICENSE file that # accompanied this code). # # You should have received a copy of the GNU General Public License version # 2 along with this work; if not, write to the Free Software Foundation, # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. # # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA # or visit www.oracle.com if you need additional information or have any # questions. # #---------------------------------------------------------------------- # for full JavaTest gui, add "-gui" to jtreg call # # This test is a followup to Basic.othervm, and depends on the output from # test for its data. Basic.othervm adapts its behavior depending on whether # it is running in a headless environment, as determined by # java.awt.GraphicsEnvironment.isHeadless(). (See Basic.java, line 59) # This value is reported in the log that is written by Basic.java. # Because this test is a report of the tests executed in Basic.othervm, # we check that setting and adapt the behavior here accordingly. # $(BUILDTESTDIR)/ReportOnlyTest.ok: $(BUILDTESTDIR)/Basic.othervm.ok \ $(JTREG_IMAGEDIR)/lib/javatest.jar \ $(JTREG_IMAGEDIR)/lib/jtreg.jar \ $(JTREG_IMAGEDIR)/bin/jtreg JAVA_HOME=$(JDKHOME) CLASSPATH=$(ABSCLASSDIR) \ $(JTREG_IMAGEDIR)/bin/jtreg $(JTREG_OPTS) \ -reportOnly -automatic -v \ -workDir:$(BUILDTESTDIR)/Basic.othervm/work \ -reportDir:$(@:%.ok=%)/report \ $(TESTDIR)/share/basic \ > $(@:%.ok=%.jt.log) 2>&1 || \ true "non-zero exit code from JavaTest intentionally ignored" $(CAT) $(@:%.ok=%.jt.log) $(GREP) headless $(BUILDTESTDIR)/Basic.othervm/log if $(GREP) "headless: *true" $(BUILDTESTDIR)/Basic.othervm/log > /dev/null ; then \ if [ ${JAVA_SPECIFICATION_VERSION} -lt 18 ]; then \ EXPECT_PASS=92 ; \ EXPECT_FAIL=40 ; \ else \ EXPECT_PASS=89 ; \ EXPECT_FAIL=28 ; \ fi ; \ else \ if [ ${JAVA_SPECIFICATION_VERSION} -lt 18 ]; then \ EXPECT_PASS=94 ; \ EXPECT_FAIL=44 ; \ else \ EXPECT_PASS=91 ; \ EXPECT_FAIL=32 ; \ fi ; \ fi ; \ echo "Expect: Test results: passed: $${EXPECT_PASS}; failed: $${EXPECT_FAIL}; error: 88" ; \ $(GREP) -s "Test results: passed: $${EXPECT_PASS}; failed: $${EXPECT_FAIL}; error: 88" $(@:%.ok=%.jt.log) > /dev/null echo $@ passed at `date` > $@ TESTS.jtreg += $(BUILDTESTDIR)/ReportOnlyTest.ok