diff options
author | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2012-05-31 13:57:24 +0200 |
---|---|---|
committer | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2012-05-31 13:57:24 +0200 |
commit | 6f6601111710aa67eee5169e5b7d89102cc33bb8 (patch) | |
tree | 0872544abd6bc76162f3f80eb3920999afbf2c34 /tests/issues/5/test-error.sh | |
parent | 8cee8b565a9c56a7732365e9563f52ff3c4ff7fd (diff) | |
parent | 090a64e73f94a6a35e5364a9d416dcf75c0a2938 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'tests/issues/5/test-error.sh')
-rwxr-xr-x | tests/issues/5/test-error.sh | 21 |
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 |