ref: 7726d04d20291674f962bfcb5cc494934a762ff2
parent: a54b1bf699483082662e8ed92f15124bd2a77d50
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Mon Feb 19 11:53:10 EST 2018
[tests/ar] Use normal here-documents in chktest.sh
--- a/tests/ar/execute/chktest.sh
+++ b/tests/ar/execute/chktest.sh
@@ -11,19 +11,19 @@
uid=`id -u`
gid=`id -g`
-cat <<"EOF" >master.a
+cat <<EOF >master.a
!<arch>
-file1 315532800 $uid $gid 100644 79 `
+file1 315532800 $uid $gid 100644 79 \`
This is the first file,
and it should go in the
first position in the archive.
-file2 315532800 $uid $gid 100644 125 `
+file2 315532800 $uid $gid 100644 125 \`
But this other one is the second one,
and it shouldn't go in the first position
because it should go in the second position.
-file3 315532800 $uid $gid 100644 118 `
+file3 315532800 $uid $gid 100644 118 \`
and at the end, this is the last file
that should go at the end of the file,
thus it should go in the third position.