Skip to content
Snippets Groups Projects
Commit ab31bf13 authored by Niels Möller's avatar Niels Möller
Browse files

Use input files without any trailing

newline character, in order to stress the end of file handling.

Rev: src/nettle/testsuite/sexp-conv-test:1.3
parent 35632b67
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ else ...@@ -16,7 +16,7 @@ else
fi fi
test_advanced () { test_advanced () {
echo "$1" > test.in echo $n "$1$c" > test.in
if ../tools/sexp-conv -s advanced <test.in >test1.out ; then if ../tools/sexp-conv -s advanced <test.in >test1.out ; then
true true
else else
...@@ -32,7 +32,7 @@ test_advanced () { ...@@ -32,7 +32,7 @@ test_advanced () {
} }
test_transport () { test_transport () {
echo "$1" > test.in echo $n "$1$c" > test.in
if ../tools/sexp-conv -s transport <test.in >test1.out ; then if ../tools/sexp-conv -s transport <test.in >test1.out ; then
true true
else else
...@@ -48,7 +48,7 @@ test_transport () { ...@@ -48,7 +48,7 @@ test_transport () {
} }
test_canonical () { test_canonical () {
echo "$1" > test.in echo $n "$1$c" > test.in
if ../tools/sexp-conv -s canonical <test.in >test1.out ; then if ../tools/sexp-conv -s canonical <test.in >test1.out ; then
true true
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment