make/RunTestsPrebuiltSpec.gmk
author ihse
Tue, 05 Dec 2017 11:12:20 +0100
branchihse-testmakefiles-branch
changeset 55952 690771005759
parent 55932 8f815cd7c95d
child 55954 59d51a521c64
permissions -rw-r--r--
Add BUILD_JAVA.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     1
#
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     2
# Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     4
#
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    10
#
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    15
# accompanied this code).
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    16
#
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    20
#
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    23
# questions.
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    24
#
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    25
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    26
################################################################################
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    27
# Fake minimalistic spec file for RunTestsPrebuilt.gmk.
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    28
################################################################################
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    29
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    30
define VerifyVariable
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    31
  ifeq ($$($1), )
55952
690771005759 Add BUILD_JAVA.
ihse
parents: 55932
diff changeset
    32
    $$(info Error: Variable $1 is missing, needed by RunTestPrebuiltSpec.gmk)
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    33
    $$(error Cannot continue.)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    34
  else
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    35
    ifneq ($$(findstring $$(LOG_LEVEL), debug trace), )
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    36
      $$(info Prebuilt variable $1=$$($1))
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    37
    endif
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    38
  endif
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    39
endef
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    40
55884
9ee155c19c6a Getting run-test-prebuilt to work quite well.
ihse
parents: 55881
diff changeset
    41
# It is the responsibility of the file including us to have set these up.
9ee155c19c6a Getting run-test-prebuilt to work quite well.
ihse
parents: 55881
diff changeset
    42
# Verify that this is correct.
9ee155c19c6a Getting run-test-prebuilt to work quite well.
ihse
parents: 55881
diff changeset
    43
$(eval $(call VerifyVariable,SPEC))
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    44
$(eval $(call VerifyVariable,TOPDIR))
55884
9ee155c19c6a Getting run-test-prebuilt to work quite well.
ihse
parents: 55881
diff changeset
    45
$(eval $(call VerifyVariable,OUTPUTDIR))
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    46
$(eval $(call VerifyVariable,BOOT_JDK))
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    47
$(eval $(call VerifyVariable,JT_HOME))
55884
9ee155c19c6a Getting run-test-prebuilt to work quite well.
ihse
parents: 55881
diff changeset
    48
$(eval $(call VerifyVariable,JDK_IMAGE_DIR))
9ee155c19c6a Getting run-test-prebuilt to work quite well.
ihse
parents: 55881
diff changeset
    49
$(eval $(call VerifyVariable,TEST_IMAGE_DIR))
55888
cd05c5ba480a Clean up some stuff in fake spec.
ihse
parents: 55887
diff changeset
    50
$(eval $(call VerifyVariable,MAKE))
cd05c5ba480a Clean up some stuff in fake spec.
ihse
parents: 55887
diff changeset
    51
$(eval $(call VerifyVariable,BASH))
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    52
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    53
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    54
# The "human readable" name of this configuration
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    55
CONF_NAME := run-test-prebuilt
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    56
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    57
###FIXME
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    58
# Information about the build system
55932
8f815cd7c95d Almost all of prebuilt spec is now resolved.
ihse
parents: 55914
diff changeset
    59
# NUM_CORES *is* needed to calculate JOBS.
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    60
NUM_CORES:=16
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    61
# Number of parallel jobs to use for compilation
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    62
JOBS?=16
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    63
TEST_JOBS?=0
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    64
55932
8f815cd7c95d Almost all of prebuilt spec is now resolved.
ihse
parents: 55914
diff changeset
    65
### FIXME
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    66
#JAVA_FLAGS:= -Duser.language=en -Duser.country=US
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    67
#JAVA_FLAGS_BIG:= -Xms64M -Xmx1600M -XX:ThreadStackSize=1536
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    68
#JAVA_FLAGS_SMALL:= -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1
55952
690771005759 Add BUILD_JAVA.
ihse
parents: 55932
diff changeset
    69
BUILD_JAVA_FLAGS := $(JAVA_FLAGS_BIG)
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    70
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    71
################################################################################
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    72
# Hard-coded values copied from spec.gmk.in.
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    73
X:=
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    74
SPACE:=$(X) $(X)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    75
COMMA:=,
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    76
MAKE_ARGS = $(MAKE_LOG_FLAGS) -r -R -I $(TOPDIR)/make/common SPEC=$(SPEC) \
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    77
    MAKE_LOG_FLAGS="$(MAKE_LOG_FLAGS)" LOG_LEVEL=$(LOG_LEVEL)
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    78
BASH_ARGS := -o pipefail -e
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    79
SHELL := $(BASH) $(BASH_ARGS)
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    80
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    81
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    82
# Set some reasonable defaults for features
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    83
DEBUG_LEVEL := release
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    84
HOTSPOT_DEBUG_LEVEL := release
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    85
BUILD_GTEST := true
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    86
BUILD_FAILURE_HANDLER := true
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    87
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    88
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    89
# Alias some paths (that should not really be used) to our JDK image under test.
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    90
SUPPORT_OUTPUTDIR := $(OUTPUTDIR)/support
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    91
BUILDTOOLS_OUTPUTDIR := $(OUTPUTDIR)/buildtools
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    92
HOTSPOT_OUTPUTDIR := $(OUTPUTDIR)/hotspot
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    93
JDK_OUTPUTDIR := $(OUTPUTDIR)/jdk
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    94
IMAGES_OUTPUTDIR := $(OUTPUTDIR)/images
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    95
BUNDLES_OUTPUTDIR := $(OUTPUTDIR)/bundles
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    96
TESTMAKE_OUTPUTDIR := $(OUTPUTDIR)/test-make
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    97
MAKESUPPORT_OUTPUTDIR := $(OUTPUTDIR)/make-support
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    98
BUILDJDK_OUTPUTDIR := $(OUTPUTDIR)/buildjdk
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    99
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   100
JRE_IMAGE_DIR := $(JDK_IMAGE_DIR)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   101
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   102
################################################################################
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   103
# Assume target platform is same as build platform
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   104
OPENJDK_TARGET_OS := $(OPENJDK_BUILD_OS)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   105
OPENJDK_TARGET_OS_TYPE := $(OPENJDK_BUILD_OS_TYPE)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   106
OPENJDK_TARGET_OS_ENV := $(OPENJDK_BUILD_OS_ENV)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   107
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   108
OPENJDK_TARGET_CPU := $(OPENJDK_BUILD_CPU)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   109
OPENJDK_TARGET_CPU_ARCH := $(OPENJDK_BUILD_CPU_ARCH)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   110
OPENJDK_TARGET_CPU_BITS := $(OPENJDK_BUILD_CPU_BITS)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   111
OPENJDK_TARGET_CPU_ENDIAN := $(OPENJDK_BUILD_CPU_ENDIAN)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   112
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   113
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   114
# Java executable definitions
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   115
JAVA_CMD := $(BOOT_JDK)/bin/java
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   116
JAVAC_CMD := $(BOOT_JDK)/bin/javac
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   117
JAVAH_CMD := $(BOOT_JDK)/bin/javah
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   118
JAR_CMD := $(BOOT_JDK)/bin/jar
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   119
JLINK_CMD := $(JDK_OUTPUTDIR)/bin/jlink
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   120
JMOD_CMD := $(JDK_OUTPUTDIR)/bin/jmod
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   121
JARSIGNER_CMD := $(BOOT_JDK)/bin/jarsigner
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   122
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   123
JAVA := $(FIXPATH) $(JAVA_CMD) $(JAVA_FLAGS_BIG) $(JAVA_FLAGS)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   124
JAVA_SMALL := $(FIXPATH) $(JAVA_CMD) $(JAVA_FLAGS_SMALL) $(JAVA_FLAGS)
55932
8f815cd7c95d Almost all of prebuilt spec is now resolved.
ihse
parents: 55914
diff changeset
   125
JAVA_JAVAC := $(FIXPATH) $(JAVA_CMD) $(JAVA_FLAGS_SMALL) $(JAVA_FLAGS)
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   126
JAVAC := $(FIXPATH) $(JAVAC_CMD)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   127
JAVAH := $(FIXPATH) $(JAVAH_CMD)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   128
JAR := $(FIXPATH) $(JAR_CMD)
55932
8f815cd7c95d Almost all of prebuilt spec is now resolved.
ihse
parents: 55914
diff changeset
   129
JLINK := $(FIXPATH) $(JLINK_CMD)
8f815cd7c95d Almost all of prebuilt spec is now resolved.
ihse
parents: 55914
diff changeset
   130
JMOD := $(FIXPATH) $(JMOD_CMD)
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   131
JARSIGNER := $(FIXPATH) $(JARSIGNER_CMD)
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   132
55952
690771005759 Add BUILD_JAVA.
ihse
parents: 55932
diff changeset
   133
BUILD_JAVA := $(JAVA)
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   134
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   135
# Some common tools. Assume most common name and no path.
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   136
AWK := awk
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   137
BASENAME := basename
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   138
CAT := cat
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   139
CD := cd
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   140
CHMOD := chmod
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   141
CP := cp
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   142
CUT := cut
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   143
DATE := date
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   144
DIFF := diff
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   145
DIRNAME := dirname
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   146
FIND := find
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   147
FIND_DELETE := -delete
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   148
ECHO := echo
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   149
EGREP := grep -E
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   150
FGREP := grep -F
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   151
GREP := grep
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   152
GZIP := gzip
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   153
HEAD := head
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   154
LS := ls
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   155
LN := ln
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   156
MKDIR := mkdir
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   157
MV := mv
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   158
NAWK := nawk
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   159
NICE := nice
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   160
PATCH := patch
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   161
PRINTF := printf
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   162
RM := rm -f
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   163
RMDIR := rmdir
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   164
SED := sed
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   165
SH := sh
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   166
SORT := sort
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   167
TAR := tar
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   168
TAIL := tail
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   169
TEE := tee
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   170
TR := tr
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   171
TOUCH := touch
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   172
UNIQ := uniq
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   173
WC := wc
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   174
XARGS := xargs
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   175
ZIPEXE := zip
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   176
UNZIP := unzip
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   177
EXPR := expr
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   178
FILE := file
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   179
HG := hg