/
githubmirror
/
jtreg
Обзор
Документация
Войти
/
githubmirror
/
jtreg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/env/EnvTest.gmk
110 строк
4 KB
Jaikiran Pai
7904016: preserve XAUTHORITY env variable
26 авг 2025, 12:32
26 авг 2025, 12:32
c83534e
Код
Авторство
О чём код?
# # Copyright (c) 2012, 2022, 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. # ENV.files := $(shell find $(TESTDIR)/env -type f) ifdef HEADLESS ENV_JTREG_OPT = -k:!needDisplay endif $(BUILDTESTDIR)/EnvTest.simple.ok: $(ENV.files) \ $(JTREG_IMAGEDIR)/lib/javatest.jar \ $(JTREG_IMAGEDIR)/lib/jtreg.jar \ $(JTREG_IMAGEDIR)/bin/jtreg $(RM) $(@:%.ok=%) $(MKDIR) $(@:%.ok=%) ( echo "testRoot=`cd $(TESTDIR)/env ; pwd`" ; \ echo "classRoot=`cd $(@:%.ok=%); pwd`/work/classes" ; \ echo "test.vm.opts=" ; \ echo "test.tool.vm.opts=" ; \ echo "test.compiler.opts=" ; \ echo "test.java.opts="; \ echo "test.jdk=$(JDK8HOME)"; \ echo "compile.jdk=$(JDK8HOME)" ) > $(@:%.ok=%/ref.properties) JT_JAVA=$(JDKHOME) $(JTREG_IMAGEDIR)/bin/jtreg $(JTREG_OPTS) \ -w:$(@:%.ok=%)/work -r:$(@:%.ok=%)/report \ -jdk:$(JDK8HOME) \ -e:refprops=`cd $(@:%.ok=%); pwd`/ref.properties \ -va \ $(ENV_JTREG_OPT) \ $(TESTDIR)/env \ > $(@:%.ok=%/jt.log) 2>&1 || \ ( cat $(@:%.ok=%/jt.log) ; exit 1 ) echo "test passed at `date`" > $@ $(BUILDTESTDIR)/EnvTest.full.ok: $(ENV.files) \ $(JTREG_IMAGEDIR)/lib/javatest.jar \ $(JTREG_IMAGEDIR)/lib/jtreg.jar \ $(JTREG_IMAGEDIR)/bin/jtreg $(RM) $(@:%.ok=%) $(MKDIR) $(@:%.ok=%) ( echo "testRoot=`cd $(TESTDIR)/env ; pwd`" ; \ echo "classRoot=`cd $(@:%.ok=%); pwd`/work/classes" ; \ echo "test.vm.opts=-DVM_OPT=vm_opt" ; \ echo "test.tool.vm.opts=-J-DVM_OPT=vm_opt" ; \ echo "test.compiler.opts=-XDJAVAC_OPT=javac_opt" ; \ echo "test.java.opts=-DJAVA_OPT=java_opt"; \ echo "test.jdk=$(JDK9HOME)"; \ echo "compile.jdk=$(JDK8HOME)" ) > $(@:%.ok=%/ref.properties) JT_JAVA=$(JDKHOME) $(JTREG_IMAGEDIR)/bin/jtreg $(JTREG_OPTS) \ -w:$(@:%.ok=%)/work -r:$(@:%.ok=%)/report \ -compilejdk:$(JDK8HOME) \ -testjdk:$(JDK9HOME) \ -vmoption:-DVM_OPT=vm_opt \ -javaoption:-DJAVA_OPT=java_opt \ -javacoption:-XDJAVAC_OPT=javac_opt \ -e:refprops=`cd $(@:%.ok=%); pwd`/ref.properties \ -va \ $(ENV_JTREG_OPT) \ $(TESTDIR)/env \ > $(@:%.ok=%/jt.log) 2>&1 || \ ( cat $(@:%.ok=%/jt.log) ; exit 1 ) echo "test passed at `date`" > $@ $(BUILDTESTDIR)/EnvTest.assert.envs.ok: \ $(JTREG_IMAGEDIR)/lib/javatest.jar \ $(JTREG_IMAGEDIR)/lib/jtreg.jar \ $(JTREG_IMAGEDIR)/bin/jtreg PRINTER=foo XAUTHORITY=bar DESKTOP_SESSION=foobar \ SystemRoot=barfoo windir=hello \ $(JTREG_IMAGEDIR)/bin/jtreg $(JTREG_OPTS) \ -jdk:$(JDKHOME) \ -w $(@:%.ok=%)/work/ \ -r $(@:%.ok=%)/report/ \ -verbose:fail \ $(TESTDIR)/env/EnvVarAssertTest.java ifneq ($(OS_NAME), windows) ifdef JDK8HOME ifdef JDK9HOME TESTS.jtreg += \ $(BUILDTESTDIR)/EnvTest.simple.ok \ $(BUILDTESTDIR)/EnvTest.full.ok endif endif endif TESTS.jtreg += $(BUILDTESTDIR)/EnvTest.assert.envs.ok