make/RunTestsPrebuiltSpec.gmk
author ihse
Wed, 29 Nov 2017 22:02:21 +0100
branchihse-testmakefiles-branch
changeset 55914 dda999e8814c
parent 55888 cd05c5ba480a
child 55932 8f815cd7c95d
permissions -rw-r--r--
Setup target os/cpu for prebuilt.
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), )
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    32
    $$(info Error: Variable $1 is missing, needed for run-tests-prebuilt)
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
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    59
NUM_CORES:=16
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    60
MEMORY_SIZE:=28130
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
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    64
#LOG_LEVEL=info
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    65
#LOG_LEVEL=$(LOG_LEVEL)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    66
#MAKE_LOG_FLAGS=$(MAKE_LOG_FLAGS)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    67
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    68
### FIXME?
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    69
#JAVA_FLAGS:= -Duser.language=en -Duser.country=US
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    70
#JAVA_FLAGS_BIG:= -Xms64M -Xmx1600M -XX:ThreadStackSize=1536
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    71
#JAVA_FLAGS_SMALL:= -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    72
#JAVA_FLAGS_JAVAC:= -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    73
#JAVA_TOOL_FLAGS_SMALL:= -J-XX:+UseSerialGC -J-Xms32M -J-Xmx512M -J-XX:TieredStopAtLevel=1
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    74
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    75
################################################################################
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    76
# Hard-coded values copied from spec.gmk.in.
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    77
X:=
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    78
SPACE:=$(X) $(X)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    79
COMMA:=,
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    80
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
    81
    MAKE_LOG_FLAGS="$(MAKE_LOG_FLAGS)" LOG_LEVEL=$(LOG_LEVEL)
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    82
BASH_ARGS := -o pipefail -e
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    83
SHELL := $(BASH) $(BASH_ARGS)
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    84
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    85
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    86
# Set some reasonable defaults for features
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    87
DEBUG_LEVEL := release
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    88
HOTSPOT_DEBUG_LEVEL := release
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    89
BUILD_GTEST := true
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    90
BUILD_FAILURE_HANDLER := true
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
    91
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    92
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    93
# 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
    94
SUPPORT_OUTPUTDIR := $(OUTPUTDIR)/support
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    95
BUILDTOOLS_OUTPUTDIR := $(OUTPUTDIR)/buildtools
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    96
HOTSPOT_OUTPUTDIR := $(OUTPUTDIR)/hotspot
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    97
JDK_OUTPUTDIR := $(OUTPUTDIR)/jdk
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    98
IMAGES_OUTPUTDIR := $(OUTPUTDIR)/images
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
    99
BUNDLES_OUTPUTDIR := $(OUTPUTDIR)/bundles
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   100
TESTMAKE_OUTPUTDIR := $(OUTPUTDIR)/test-make
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   101
MAKESUPPORT_OUTPUTDIR := $(OUTPUTDIR)/make-support
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   102
BUILDJDK_OUTPUTDIR := $(OUTPUTDIR)/buildjdk
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   103
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   104
JRE_IMAGE_DIR := $(JDK_IMAGE_DIR)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   105
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   106
################################################################################
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   107
# Assume target platform is same as build platform
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   108
OPENJDK_TARGET_OS := $(OPENJDK_BUILD_OS)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   109
OPENJDK_TARGET_OS_TYPE := $(OPENJDK_BUILD_OS_TYPE)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   110
OPENJDK_TARGET_OS_ENV := $(OPENJDK_BUILD_OS_ENV)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   111
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   112
OPENJDK_TARGET_CPU := $(OPENJDK_BUILD_CPU)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   113
OPENJDK_TARGET_CPU_ARCH := $(OPENJDK_BUILD_CPU_ARCH)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   114
OPENJDK_TARGET_CPU_BITS := $(OPENJDK_BUILD_CPU_BITS)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   115
OPENJDK_TARGET_CPU_ENDIAN := $(OPENJDK_BUILD_CPU_ENDIAN)
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   116
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   117
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   118
# Java executable definitions
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   119
JAVA_CMD := $(BOOT_JDK)/bin/java
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   120
JAVAC_CMD := $(BOOT_JDK)/bin/javac
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   121
JAVAH_CMD := $(BOOT_JDK)/bin/javah
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   122
JAR_CMD := $(BOOT_JDK)/bin/jar
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   123
JLINK_CMD := $(JDK_OUTPUTDIR)/bin/jlink
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   124
JMOD_CMD := $(JDK_OUTPUTDIR)/bin/jmod
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   125
JARSIGNER_CMD := $(BOOT_JDK)/bin/jarsigner
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   126
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   127
JAVA := $(FIXPATH) $(JAVA_CMD) $(JAVA_FLAGS_BIG) $(JAVA_FLAGS)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   128
JAVA_SMALL := $(FIXPATH) $(JAVA_CMD) $(JAVA_FLAGS_SMALL) $(JAVA_FLAGS)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   129
JAVA_JAVAC := $(FIXPATH) $(JAVA_CMD) $(JAVA_FLAGS_JAVAC) $(JAVA_FLAGS)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   130
JAVAC := $(FIXPATH) $(JAVAC_CMD)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   131
JAVAH := $(FIXPATH) $(JAVAH_CMD)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   132
JAR := $(FIXPATH) $(JAR_CMD)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   133
JLINK := $(FIXPATH) $(JLINK_CMD) $(JAVA_TOOL_FLAGS_SMALL)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   134
JMOD := $(FIXPATH) $(JMOD_CMD) $(JAVA_TOOL_FLAGS_SMALL)
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   135
JARSIGNER := $(FIXPATH) $(JARSIGNER_CMD)
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   136
55914
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   137
################################################################################
dda999e8814c Setup target os/cpu for prebuilt.
ihse
parents: 55888
diff changeset
   138
# Some common tools. Assume most common name and no path.
55881
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   139
AWK := awk
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   140
BASENAME := basename
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   141
CAT := cat
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   142
CD := cd
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   143
CHMOD := chmod
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   144
CP := cp
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   145
CUT := cut
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   146
DATE := date
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   147
DIFF := diff
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   148
DIRNAME := dirname
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   149
FIND := find
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   150
FIND_DELETE := -delete
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   151
ECHO := echo
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   152
EGREP := grep -E
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   153
FGREP := grep -F
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   154
GREP := grep
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   155
GZIP := gzip
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   156
HEAD := head
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   157
LS := ls
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   158
LN := ln
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   159
MKDIR := mkdir
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   160
MV := mv
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   161
NAWK := nawk
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   162
NICE := nice
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   163
PATCH := patch
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   164
PRINTF := printf
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   165
RM := rm -f
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   166
RMDIR := rmdir
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   167
SED := sed
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   168
SH := sh
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   169
SORT := sort
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   170
TAR := tar
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   171
TAIL := tail
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   172
TEE := tee
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   173
TR := tr
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   174
TOUCH := touch
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   175
UNIQ := uniq
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   176
WC := wc
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   177
XARGS := xargs
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   178
ZIPEXE := zip
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   179
UNZIP := unzip
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   180
EXPR := expr
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   181
FILE := file
dbf68259f80e Populate with latest code from jdk9 sandbox.
ihse
parents:
diff changeset
   182
HG := hg