/
githubmirror
/
jtreg
Обзор
Документация
Войти
/
githubmirror
/
jtreg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/classIsolation/ClassIsolationTest.gmk
117 строк
5 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. # UCD_FILES := $(shell find $(TESTDIR)/classIsolation -type f ) # Up until jtreg 4.2 b08, class files were placed in a shared classes directory. # When enabled in jtreg 4.2 b08 or later, class files are placed in an unshared test-specific directory # See Locations constructor, local variable useUniqueClassDir $(BUILDTESTDIR)/ClassIsolation.disable.b07.ok: $(UCD_FILES) \ $(JTREG_IMAGEDIR)/lib/javatest.jar \ $(JTREG_IMAGEDIR)/lib/jtreg.jar $(RM) $(@:%.ok=%) $(MKDIR) $(@:%.ok=%)/jtreg $(CP) -R $(JTREG_IMAGEDIR)/* $(@:%.ok=%)/jtreg $(ECHO) "JTREG_VERSION=4.2 b07" > $(@:%.ok=%)/jtreg/release $(JDKJAVA) -jar $(@:%.ok=%)/jtreg/lib/jtreg.jar \ -jdk:$(JDKHOME) \ -w $(@:%.ok=%)/work \ -r $(@:%.ok=%)/report \ $(TESTDIR)/classIsolation/disable files=`$(FIND) $(@:%.ok=%)/work -name patches -prune -o -name \*.class -print | grep 'Test.\.d'` ; \ if [ -n "$$files" ]; then \ echo "Unexpected files found:" ; \ for f in $$files ; do echo $$f ; done ; \ exit 1; \ fi echo "test passed at `date`" > $@ $(BUILDTESTDIR)/ClassIsolation.disable.b08.ok: $(UCD_FILES) \ $(JTREG_IMAGEDIR)/lib/javatest.jar \ $(JTREG_IMAGEDIR)/lib/jtreg.jar $(RM) $(@:%.ok=%) $(MKDIR) $(@:%.ok=%)/jtreg $(CP) -R $(JTREG_IMAGEDIR)/* $(@:%.ok=%)/jtreg $(ECHO) "JTREG_VERSION=4.2 b08" > $(@:%.ok=%)/jtreg/release $(JDKJAVA) -jar $(@:%.ok=%)/jtreg/lib/jtreg.jar \ -jdk:$(JDKHOME) \ -w $(@:%.ok=%)/work \ -r $(@:%.ok=%)/report \ $(TESTDIR)/classIsolation/disable files=`$(FIND) $(@:%.ok=%)/work -name patches -prune -o -name \*.class -print | grep 'Test.\.d'` ; \ if [ -n "$$files" ]; then \ echo "Unexpected files found:" ; \ for f in $$files ; do echo $$f ; done ; \ exit 1; \ fi echo "test passed at `date`" > $@ $(BUILDTESTDIR)/ClassIsolation.default.b08.ok: $(UCD_FILES) \ $(JTREG_IMAGEDIR)/lib/javatest.jar \ $(JTREG_IMAGEDIR)/lib/jtreg.jar $(RM) $(@:%.ok=%) $(MKDIR) $(@:%.ok=%)/jtreg $(CP) -R $(JTREG_IMAGEDIR)/* $(@:%.ok=%)/jtreg $(ECHO) "JTREG_VERSION=4.2 b08" > $(@:%.ok=%)/jtreg/release $(JDKJAVA) -jar $(@:%.ok=%)/jtreg/lib/jtreg.jar \ -jdk:$(JDKHOME) \ -w $(@:%.ok=%)/work \ -r $(@:%.ok=%)/report \ $(TESTDIR)/classIsolation/default files=`$(FIND) $(@:%.ok=%)/work -name patches -prune -o -name \*.class -print | grep 'Test.\.d'` ; \ if [ -n "$$files" ]; then \ echo "Unexpected files found:" ; \ for f in $$files ; do echo $$f ; done ; \ exit 1; \ fi echo "test passed at `date`" > $@ $(BUILDTESTDIR)/ClassIsolation.enable.b08.ok: $(UCD_FILES) \ $(JTREG_IMAGEDIR)/lib/javatest.jar \ $(JTREG_IMAGEDIR)/lib/jtreg.jar $(RM) $(@:%.ok=%) $(MKDIR) $(@:%.ok=%)/jtreg $(CP) -R $(JTREG_IMAGEDIR)/* $(@:%.ok=%)/jtreg $(ECHO) "JTREG_VERSION=4.2 b08" > $(@:%.ok=%)/jtreg/release $(JDKJAVA) -jar $(@:%.ok=%)/jtreg/lib/jtreg.jar \ -jdk:$(JDKHOME) \ -w $(@:%.ok=%)/work \ -r $(@:%.ok=%)/report \ $(TESTDIR)/classIsolation/enable files=`$(FIND) $(@:%.ok=%)/work -name patches -prune -o -name \*.class -print | grep -v 'Test.\.d'` ; \ if [ -n "$$files" ]; then \ echo "Unexpected files found:" ; \ for f in $$files ; do echo $$f ; done ; \ exit 1; \ fi echo "test passed at `date`" > $@ TESTS.jtreg += \ $(BUILDTESTDIR)/ClassIsolation.disable.b07.ok \ $(BUILDTESTDIR)/ClassIsolation.disable.b08.ok \ $(BUILDTESTDIR)/ClassIsolation.default.b08.ok \ $(BUILDTESTDIR)/ClassIsolation.enable.b08.ok