aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/test/testenv.sh
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-12-21 16:32:07 +0000
committerGravatar Klaus Aehlig <aehlig@google.com>2016-12-21 17:26:27 +0000
commit6d31cb01b80d0560c0c083d40e641816877b3d06 (patch)
tree55acbdbc5c25be32ce927b3a0509c7e3f7799541 /third_party/ijar/test/testenv.sh
parentd83e7ef2485c8fe2d9dc8ca938f694b34d824ed2 (diff)
--
PiperOrigin-RevId: 142666783 MOS_MIGRATED_REVID=142666783
Diffstat (limited to 'third_party/ijar/test/testenv.sh')
-rwxr-xr-xthird_party/ijar/test/testenv.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/third_party/ijar/test/testenv.sh b/third_party/ijar/test/testenv.sh
deleted file mode 100755
index 235f2c5948..0000000000
--- a/third_party/ijar/test/testenv.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-#
-# Copyright 2015 The Bazel Authors. All rights reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# Setting up the environment for Bazel integration tests.
-#
-
-[ -z "$TEST_SRCDIR" ] && { echo "TEST_SRCDIR not set!" >&2; exit 1; }
-
-# Load the unit-testing framework
-source "${TEST_SRCDIR}/io_bazel/src/test/shell/unittest.bash" || \
- { echo "Failed to source unittest.bash" >&2; exit 1; }
-
-## OSX/BSD stat and MD5
-PLATFORM="$(uname -s | tr 'A-Z' 'a-z')"
-if [[ "$PLATFORM" = "linux" ]]; then
- function statfmt() {
- stat -c "%s" $1
- }
- MD5SUM=md5sum
-else
- function statfmt() {
- stat -f "%z" $1
- }
- MD5SUM=/sbin/md5
-fi