/
githubmirror
/
jtreg
Обзор
Документация
Войти
/
githubmirror
/
jtreg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/basic/Basic.gmk
109 строк
4 KB
Christian Stein
7903989: Default to no error if existing, make parent directories as needed
15 апр 2025, 17:58
15 апр 2025, 17:58
19cdb84
Код
Авторство
О чём код?
# # Copyright (c) 1997, 2025, 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. # #---------------------------------------------------------------------- # explicit rules for specific tests BASIC.files := $(shell find $(TESTDIR)/share/basic -type f) $(BUILDTESTDIR)/Basic.check.ok: \ $(ALL_JTREG_JARS) \ $(BUILDTESTDIR)/i18n.com.sun.javatest.regtest.config.ok \ $(BUILDTESTDIR)/i18n.com.sun.javatest.regtest.report.ok \ $(BUILDTESTDIR)/i18n.com.sun.javatest.regtest.tool.ok \ $(BASIC.files) $(RM) $(@:%.ok=%/work) $(@:%.ok=%/report) $(MKDIR) $(@:%.ok=%/work/scratch) $(@:%.ok=%/report) $(JDKJAVA) \ -Djavatest.regtest.allowTrailingBuild=true \ -jar $(JTREG_IMAGEDIR)/lib/jtreg.jar \ -w $(@:%.ok=%/work) \ -r $(@:%.ok=%/report) \ -c -v1 \ $(TESTDIR)/share/basic \ > $(@:%.ok=%/log) 2>&1|| \ true "non-zero exit code from JavaTest intentionally ignored" if [ ${JAVA_SPECIFICATION_VERSION} -lt 18 ]; then \ $(GREP) -s 'Test results: passed: 157; error: 84' $(@:%.ok=%/log) > /dev/null ; \ else \ $(GREP) -s 'Test results: passed: 142; error: 84' $(@:%.ok=%/log) > /dev/null ; \ fi echo $@ passed at `date` > $@ INITIAL_TESTS += \ $(BUILDTESTDIR)/Basic.check.ok #---------------------------------------------------------------------- ENVVARS="DISPLAY=$${DISPLAY:-`uname -n`:0.0}" ifeq ($(OS_NAME), windows) BASIC_TESTS := $(shell cygpath -m $(abspath $(TESTDIR)/share/basic) ) else BASIC_TESTS := $(abspath $(TESTDIR)/share/basic) endif $(BUILDTESTDIR)/Basic.classes.ok: \ $(ALL_JTREG_JARS) \ $(TESTDIR)/basic/Basic.java $(MKDIR) $(BUILDTESTDIR)/basic/classes CLASSPATH="$(CLASSDIR)$(PS)$(JAVADIR)$(PS)$(JAVATEST_JAR)" \ $(JDKJAVAC) -Xlint -Werror -encoding ASCII -d $(BUILDTESTDIR)/basic/classes $(TESTDIR)/basic/Basic.java echo Basic.java compiled at `date` > $@ $(BUILDTESTDIR)/Basic.othervm.ok \ $(BUILDTESTDIR)/Basic.agentvm.ok: \ $(BUILDTESTDIR)/Basic.classes.ok \ $(BUILDTESTDIR)/i18n.com.sun.javatest.regtest.config.ok \ $(BUILDTESTDIR)/i18n.com.sun.javatest.regtest.report.ok \ $(BUILDTESTDIR)/i18n.com.sun.javatest.regtest.tool.ok \ $(BASIC.files) $(RM) $(@:%.ok=%/work) $(@:%.ok=%/report) $(MKDIR) $(@:%.ok=%/work/scratch) $(@:%.ok=%/report) cd $(@:%.ok=%/work/scratch) ; \ $(JDKJAVA) \ -cp "../../../basic/classes$(PS)$(JTREG_IMAGEJARDIR)/jtreg.jar" \ -Ddebug.com.sun.javatest.TestResultTable=true \ -Ddebug.com.sun.javatest.TRT.TreeIterator=true \ -Ddebug.com.sun.javatest.TestRunner=true \ -Djavatest.regtest.allowTrailingBuild=true \ -Djavatest.regtest.showCmd=true \ -Djavatest.regtest.debugOptions=true \ Basic \ $(BASIC_TESTS) \ ../../report \ ../../work \ $(JDKHOME) \ $(ENVVARS) \ $(@:$(BUILDTESTDIR)/Basic.%.ok=-%) \ > ../../log 2>&1 \ || (cat ../../log ; exit 1) echo $@ passed at `date` > $@ INITIAL_TESTS += \ $(BUILDTESTDIR)/Basic.othervm.ok \ $(BUILDTESTDIR)/Basic.agentvm.ok