summaryrefslogtreecommitdiff
path: root/tests/issues/5/test-error.sh
diff options
context:
space:
mode:
authorJonathan Clark <jon.h.clark@gmail.com>2012-05-26 13:28:15 -0400
committerJonathan Clark <jon.h.clark@gmail.com>2012-05-26 13:28:15 -0400
commitc6ef1c92d2da273fd5a413b5166a9acc8ebb1e5f (patch)
tree8d3de2cc5ec88cadd4efe5499ba657101a0914e5 /tests/issues/5/test-error.sh
parentbbb3e201df4cdf6125fb0117df76f92594308c46 (diff)
Files for issue #5
Diffstat (limited to 'tests/issues/5/test-error.sh')
-rwxr-xr-xtests/issues/5/test-error.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/issues/5/test-error.sh b/tests/issues/5/test-error.sh
new file mode 100755
index 00000000..49fae40c
--- /dev/null
+++ b/tests/issues/5/test-error.sh
@@ -0,0 +1,21 @@
+#!/usr/bin/env bash
+
+scriptDir=$(cd $(dirname $0); pwd)
+
+set -u
+autoreconf -ifv
+./configure --with-boost=$HOME/prefix --disable-gtest
+make clean
+make -j32
+
+set +eo pipefail
+make -j32
+
+echo >&2 "============================="
+echo >&2 "TESTING: $(git log | head -n1 | cut -f2 -d' ')"
+echo >&2 "============================="
+zcat $scriptDir/mapoutput.abj.gz \
+ | $scriptDir/cdec/pro-train/mr_pro_reduce --weights $scriptDir/weights.0 -C 500 -y 5000 --interpolate_with_weights 1
+echo >&2 "============================="
+
+sleep 5