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