diff options
author | Nick Clifton <nickc@redhat.com> | 2023-09-26 16:27:28 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2023-09-26 16:27:28 +0100 |
commit | 854f72b36dc72dc23b24563c5e7f43efc373b712 (patch) | |
tree | 5761893fa734efc4316b815dda0b4afc210b81c1 /binutils/testsuite | |
parent | 940bb336cbce23f1780c449a7c72ca41e8d91fa5 (diff) | |
download | gdb-854f72b36dc72dc23b24563c5e7f43efc373b712.zip gdb-854f72b36dc72dc23b24563c5e7f43efc373b712.tar.gz gdb-854f72b36dc72dc23b24563c5e7f43efc373b712.tar.bz2 |
Fix a snafu in the new tests for reproducible archives that assumed a umask of 22.
Diffstat (limited to 'binutils/testsuite')
-rw-r--r-- | binutils/testsuite/binutils-all/ar.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/testsuite/binutils-all/ar.exp b/binutils/testsuite/binutils-all/ar.exp index a0fa54d..aade419 100644 --- a/binutils/testsuite/binutils-all/ar.exp +++ b/binutils/testsuite/binutils-all/ar.exp @@ -598,7 +598,7 @@ proc replacing_non_deterministic_member { } { # Since this archive is non-deterministic, we do not know what the # user or group ids will be, so we have to use */* to match them. set got [binutils_run $AR "tvO $archive"] - if ![string match "rw-r--r-- */* *${newer_length} *bintest.${obj} 0x*" $got] { + if ![string match "\[rw-\]* */* *${newer_length} *bintest.${obj} 0x*" $got] { fail "$testname (wrong size, expected: $newer_length)" return } @@ -672,7 +672,7 @@ proc replacing_sde_deterministic_member { } { # Since this archive has fixed source dates, but non-deterministic # uid and gid values we have to use */* to match them. set got [binutils_run $AR "tvO $archive"] - if ![string match "rw-r--r-- */* *${older_length} *bintest.${obj} 0x*" $got] { + if ![string match "\[rw-\]* */* *${older_length} *bintest.${obj} 0x*" $got] { fail "$testname (wrong size, expected: $older_length)" unsetenv SOURCE_DATE_EPOCH return |