You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@joshua.apache.org by mj...@apache.org on 2016/09/14 09:11:42 UTC

[20/43] incubator-joshua git commit: removed k-best-extraction test (already converted to unit test)

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/49bbcac0/src/test/resources/decoder/k-best-extraction/test.sh
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/k-best-extraction/test.sh b/src/test/resources/decoder/k-best-extraction/test.sh
deleted file mode 100755
index 2f12d33..0000000
--- a/src/test/resources/decoder/k-best-extraction/test.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You 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.
-#
-set -u
-
-cat input.txt | $JOSHUA/bin/joshua-decoder -m 1g -threads 2 -c joshua.config > output 2> log
-
-# Extract the translations and model scores
-cat output | awk -F"\|" '{print $1 "|||" $4 "|||" $10}' > output.scores
-
-# Compare
-diff -u output.scores output.scores.gold > diff
-
-if [ $? -eq 0 ]; then
-  rm -f diff output log output.scores
-  exit 0
-else
-  exit 1
-fi