File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change
1
+ # 2024-11-14 Version 0.5
2
+
1
3
- Add ` #waitpid `
2
4
- Add ` UM.pipe ` , ` UM.kernel_version `
3
5
- Add ` #open `
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
class UringMachine
4
- VERSION = '0.4 '
4
+ VERSION = '0.5 '
5
5
end
Original file line number Diff line number Diff line change @@ -1021,6 +1021,8 @@ def test_pipe
1021
1021
1022
1022
class WaitTest < UMBaseTest
1023
1023
def test_waitpid
1024
+ skip if UM . kernel_version < 607
1025
+
1024
1026
msg = 'hello from child'
1025
1027
1026
1028
rfd , wfd = UM . pipe
@@ -1042,6 +1044,8 @@ def test_waitpid
1042
1044
end
1043
1045
1044
1046
def test_waitpid_bad_pid
1047
+ skip if UM . kernel_version < 607
1048
+
1045
1049
assert_raises ( Errno ::ECHILD ) { machine . waitpid ( 1 , UM ::WEXITED ) }
1046
1050
end
1047
1051
You can’t perform that action at this time.
0 commit comments