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

setup.sh « factors « decoder « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fbbfad6330b86febce7104a071f487dd0e1cc451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash -x

#####################################################################
# AUTHOR: pedrodiascoelho
#####################################################################

# Exit on error
set -e

# Test code goes here
test -f $MRT_MODELS/factors/model.npz || exit 1
test -f $MRT_MODELS/factors/model.npz.decoder.yml || exit 1

# Exit with success code
exit 0