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 18:20:09 UTC

[10/10] incubator-joshua git commit: Removed no longer needed regression test script

Removed no longer needed regression test script


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/4a558be6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/4a558be6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/4a558be6

Branch: refs/heads/master
Commit: 4a558be65b903dc29dacb3d3c2c559149f76fb3a
Parents: d51169a
Author: Michael A. Hedderich <mi...@users.noreply.github.com>
Authored: Wed Sep 14 19:24:14 2016 +0200
Committer: Michael A. Hedderich <mi...@users.noreply.github.com>
Committed: Wed Sep 14 19:24:14 2016 +0200

----------------------------------------------------------------------
 src/test/resources/decoder/n-ary/test.sh | 33 ---------------------------
 1 file changed, 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/4a558be6/src/test/resources/decoder/n-ary/test.sh
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/n-ary/test.sh b/src/test/resources/decoder/n-ary/test.sh
deleted file mode 100755
index 4efcffb..0000000
--- a/src/test/resources/decoder/n-ary/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 1 -c joshua.config > output 2> log
-
-# Extract the translations and model scores
-cat output | awk -F\| '{print $4 " ||| " $10}' > output.scores
-
-# Compare
-diff -u output.scores gold.scores > diff
-
-if [ $? -eq 0 ]; then
-	rm -f diff log output output.scores
-	exit 0
-else
-	exit 1
-fi