Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sentencepiece/test_decode_with_nonexistent_spm_vocab.sh')
-rw-r--r--tests/sentencepiece/test_decode_with_nonexistent_spm_vocab.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/sentencepiece/test_decode_with_nonexistent_spm_vocab.sh b/tests/sentencepiece/test_decode_with_nonexistent_spm_vocab.sh
new file mode 100644
index 0000000..c497baf
--- /dev/null
+++ b/tests/sentencepiece/test_decode_with_nonexistent_spm_vocab.sh
@@ -0,0 +1,26 @@
+#!/bin/bash -x
+
+#####################################################################
+# SUMMARY: Run marian-decoder with non-existent SentencePiece vocabulary
+# AUTHOR: snukky
+# TAGS: sentencepiece
+#####################################################################
+
+# Exit on error
+set -e
+
+# Remove old artifacts and create working directory
+rm -rf decode_wo_vocab.{log,out}
+
+# Run marian-decoder
+$MRT_MARIAN/marian-decoder -m $MRT_MODELS/transformer/model.npz -v foo.spm foo.spm \
+ < text.in > decode_wo_vocab.log 2>&1 || true
+
+# Check if files exist
+test -e decode_wo_vocab.log
+
+# Check logging messages
+grep -qi "vocabulary file .*does not exist" decode_wo_vocab.log
+
+# Exit with success code
+exit 0