blob: 4c0d3d58c7297c112ddb6efc4d8605256a846fe4 [file] [log] [blame]
#!/bin/bash
# Copyright 2014 The Kythe 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.
# Ensures that vnames.json can be read by the //kythe/storage/go/filevnames library
set -e
DIRECTORY_INDEXER="$PWD/${DIR_INDEXER?:missing directory_indexer}"
CONFIG="$PWD/$1"
OUT="$TEST_TMPDIR/file_entries"
# Directory tree with some (but not many) files
DIR="$PWD/kythe/data"
mkdir -p "$(dirname "$OUT")"
cd "$DIR"
"$DIRECTORY_INDEXER" --emit_irregular --vnames "$CONFIG" >"$OUT"
test -s "$OUT" || {
echo "$OUT is empty" >&2
exit 1
}