scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 5555952a9d8391d0dc2c46a3ea2e877486d76b21
parent 60c7eab51eb00b3123f6644fe52d8cfb5a5e38c1
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 19 Feb 2018 16:53:10 +0000

[tests/ar] Use normal here-documents in chktest.sh

Diffstat:
Mtests/ar/execute/chktest.sh | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/ar/execute/chktest.sh b/tests/ar/execute/chktest.sh @@ -11,19 +11,19 @@ rm -rf file* master.a 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.