-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable timeout signal before going to next test in perform and netlink.
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/perl | ||
|
||
# Copyright (c) 2022 Moritz Buhl <[email protected]> | ||
# Copyright (c) 2018-2023 Alexander Bluhm <[email protected]> | ||
# Copyright (c) 2018-2024 Alexander Bluhm <[email protected]> | ||
# | ||
# Permission to use, copy, modify, and distribute this software for any | ||
# purpose with or without fee is hereby granted, provided that the above | ||
|
@@ -195,6 +195,8 @@ sub bad { | |
$log->sync() if $log; | ||
$tr->sync(); | ||
no warnings 'exiting'; | ||
alarm(0); | ||
# the local and eval around the signal handler behave unexpectedly | ||
next TEST; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/perl | ||
|
||
# Copyright (c) 2018-2023 Alexander Bluhm <[email protected]> | ||
# Copyright (c) 2018-2024 Alexander Bluhm <[email protected]> | ||
# | ||
# Permission to use, copy, modify, and distribute this software for any | ||
# purpose with or without fee is hereby granted, provided that the above | ||
|
@@ -159,6 +159,8 @@ sub bad { | |
$log->sync() if $log; | ||
$tr->sync(); | ||
no warnings 'exiting'; | ||
# the local and eval around the signal handler behave unexpectedly | ||
alarm(0); | ||
next TEST; | ||
} | ||
|
||
|