Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 56cd6bb

Browse files
committed
Update tests for glibc 2.31
A number of glibc syscall wrappers have been reimplemented in terms of newer syscalls including: nanosleep - 3537ecb49cf7177274607004c562d6f9ecc99474 semop - 765cdd0bffd77960ae852104fc4ea5edcdb8aed3 adjtimex - c81aa64e81826c308c4ecbd1982fa086ca6e647b Update syscall logging tests to reflex these changes.
1 parent 65ce0d1 commit 56cd6bb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/syscall_format.log.match

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ $(S) $(XX) -- dup3(4, 5, 0x80000) = ?
230230
$(S) $(XX) -- dup3(4, 5, 0x80000) = 22
231231
$(S) $(XX) -- pause() = ?
232232
$(S) $(XX) -- pause() = 22
233-
$(S) $(XX) -- nanosleep(0x123000, 0x234000) = ?
234-
$(S) $(XX) -- nanosleep(0x123000, 0x234000) = 22
233+
$(S) $(XX) -- clock_nanosleep(0x0, 0x0, 0x123000, 0x234000) = ?
234+
$(S) $(XX) -- clock_nanosleep(0x0, 0x0, 0x123000, 0x234000) = 22
235235
$(S) $(XX) -- getitimer(0x3, 0x123000) = ?
236236
$(S) $(XX) -- getitimer(0x3, 0x123000) = 22
237237
$(S) $(XX) -- alarm(0x4) = ?
@@ -288,8 +288,8 @@ $(S) $(XX) -- uname($(XX)) = ?
288288
$(S) $(XX) -- uname($(XX)) = 22
289289
$(S) $(XX) -- semget(0x4, 0x1, 0x200) = ?
290290
$(S) $(XX) -- semget(0x4, 0x1, 0x200) = 22
291-
$(S) $(XX) -- semop(0x4, 0x123000, 0x1) = ?
292-
$(S) $(XX) -- semop(0x4, 0x123000, 0x1) = 22
291+
$(S) $(XX) -- semtimedop(0x4, 0x123000, 0x1, 0x0) = ?
292+
$(S) $(XX) -- semtimedop(0x4, 0x123000, 0x1, 0x0) = 22
293293
$(S) $(XX) -- semtimedop(0x4, 0x123000, 0x1, 0x234000) = ?
294294
$(S) $(XX) -- semtimedop(0x4, 0x123000, 0x1, 0x234000) = 22
295295
$(S) $(XX) -- semctl(0x1, 0x2, 0x3, $(XX), $(XX), 0x234000) = ?
@@ -542,8 +542,8 @@ $(S) $(XX) -- prctl(0x18, 0x1, 0x2, 0x3, 0x4) = ?
542542
$(S) $(XX) -- prctl(0x18, 0x1, 0x2, 0x3, 0x4) = 22
543543
$(S) $(XX) -- arch_prctl(0x1002, 0x123000, $(XX)) = ?
544544
$(S) $(XX) -- arch_prctl(0x1002, 0x123000, $(XX)) = 22
545-
$(S) $(XX) -- adjtimex(0x123000) = ?
546-
$(S) $(XX) -- adjtimex(0x123000) = 22
545+
$(S) $(XX) -- clock_adjtime(0x0, 0x123000) = ?
546+
$(S) $(XX) -- clock_adjtime(0x0, 0x123000) = 22
547547
$(S) $(XX) -- chroot("input_data\x01\x02\x03\n\r\t") = ?
548548
$(S) $(XX) -- chroot("input_data\x01\x02\x03\n\r\t") = 22
549549
$(S) $(XX) -- sync() = ?

0 commit comments

Comments
 (0)