scc

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

commit ced780e7de4878fb9e2b4072972799d69d0543c5
parent 80c896c4423e018e92c600d9d5e6803095876e90
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 19 Feb 2018 09:04:44 +0000

[tests/ar] Don't hardcode the user id in the test

Let to the own test to figure out what is the correct number.

Diffstat:
Mtests/ar/execute/test-q.sh | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/ar/execute/test-q.sh b/tests/ar/execute/test-q.sh @@ -67,9 +67,9 @@ cmp $tmp1 $tmp2 ar -tv file.a >$tmp1 cat <<! >$tmp2 -rw-r--r-- 1000/100 Tue Jan 1 00:00:00 1980 file1 -rw-r--r-- 1000/100 Tue Jan 1 00:00:00 1980 file2 -rw-r--r-- 1000/100 Tue Jan 1 00:00:00 1980 file3 +rw-r--r-- `id -u`/`id -g` Tue Jan 1 00:00:00 1980 file1 +rw-r--r-- `id -u`/`id -g` Tue Jan 1 00:00:00 1980 file2 +rw-r--r-- `id -u`/`id -g` Tue Jan 1 00:00:00 1980 file3 ! cmp $tmp1 $tmp2