diff --git a/verilog/tools/formatter/BUILD b/verilog/tools/formatter/BUILD index b2d404618..85bd5a308 100644 --- a/verilog/tools/formatter/BUILD +++ b/verilog/tools/formatter/BUILD @@ -78,14 +78,6 @@ sh_test_with_runfiles_lib( data = [":verible-verilog-format"], ) -sh_test_with_runfiles_lib( - name = "format-file-nochange-check_test", - size = "small", - srcs = ["format_file_check_nochange_test.sh"], - args = ["$(location :verible-verilog-format)"], - data = [":verible-verilog-format"], -) - sh_test_with_runfiles_lib( name = "format-file-lex-error_test", size = "small", diff --git a/verilog/tools/formatter/format_file_check_nochange_test.sh b/verilog/tools/formatter/format_file_check_nochange_test.sh deleted file mode 100755 index 7a73fdbe8..000000000 --- a/verilog/tools/formatter/format_file_check_nochange_test.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env bash -# Copyright 2017-2020 The Verible Authors. -# -# 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. - -# Tests verible-verilog-format reading from a file, checking for formatting -# changes where no changes are needed. This should return 0. - -declare -r MY_OUTPUT_FILE="${TEST_TMPDIR}/myoutput.txt" - -# Get tool from argument -[[ "$#" == 1 ]] || { - echo "Expecting 1 positional argument, verible-verilog-format path." - exit 1 -} -formatter="$(rlocation ${TEST_WORKSPACE}/$1)" - -# Will overwrite this file in-place. -cat >${MY_OUTPUT_FILE} <${MY_INPUT_FILE} <"${unformatted}" <