-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
424 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
#!/bin/bash | ||
|
||
if test -z "$srcdir" ; then | ||
echo "run this from make check or set srcdir=." | ||
exit 1 | ||
fi | ||
set -e -u | ||
|
||
cd "$(dirname "$0")" | ||
#cd "$(dirname "$0")" | ||
|
||
../../src/divvun-blanktag blanktagger.hfst < input.cg > output.cg | ||
../../src/divvun-blanktag blanktagger.hfst < "$srcdir"/input.cg > output.cg | ||
|
||
diff expected.cg output.cg | ||
diff "$srcdir"/expected.cg output.cg | ||
|
||
../../src/divvun-blanktag blanktagger.hfst < input.ends.cg > output.ends.cg | ||
../../src/divvun-blanktag blanktagger.hfst < "$srcdir"/input.ends.cg > output.ends.cg | ||
|
||
diff expected.ends.cg output.ends.cg | ||
diff "$srcdir"/expected.ends.cg output.ends.cg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
#!/bin/bash | ||
|
||
if test -z "$srcdir" ; then | ||
echo call this from make check or set srcdir=. | ||
exit 1 | ||
fi | ||
|
||
set -e -u | ||
|
||
./run X -X | ||
"$srcdir"/run X -X |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
#!/bin/bash | ||
|
||
if test -z "$srcdir" ; then | ||
echo call this from make check or set srcdir=. | ||
exit 1 | ||
fi | ||
set -e -u | ||
|
||
./run default | ||
"$srcdir"/run default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
#!/bin/bash | ||
|
||
if test -z "$srcdir" ; then | ||
echo call this from make check or set srcdir=. | ||
exit 1 | ||
fi | ||
set -e -u | ||
|
||
./run flush | ||
"$srcdir"/run flush |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
#!/bin/bash | ||
|
||
if test -z "$srcdir" ; then | ||
echo call this from make check or set srcdir=. | ||
exit 1 | ||
fi | ||
|
||
set -e -u | ||
|
||
./run n2 -n 2 | ||
"$srcdir"/run n2 -n 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
#!/bin/bash | ||
|
||
if test -z "$srcdir" ; then | ||
echo call this from make check or set srcdir=. | ||
exit 1 | ||
fi | ||
|
||
set -e -u | ||
|
||
./run skip | ||
"$srcdir"/run skip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
#!/bin/bash | ||
|
||
if test -z "$srcdir" ; then | ||
echo run this from make check or set srcdir=. | ||
exit 1 | ||
fi | ||
|
||
set -e -u | ||
|
||
./run archive -a sme.zcheck -n smegram | ||
builddir=$(pwd) "$srcdir"/run archive -a sme.zcheck -n smegram |
Oops, something went wrong.