doc/news.texi | 9 ++++++++- t/goredo-chmoding.t | 4 ++-- usage.go | 2 +- diff --git a/doc/news.texi b/doc/news.texi index 3f51155f8b1d4b749465394c282f76c06ae3ce010ad9a3931c08af1a0670980b..7fe43235e4833882f6d85704cb16dddf31c808193add9485611b72dd55b9cca0 100644 --- a/doc/news.texi +++ b/doc/news.texi @@ -2,11 +2,18 @@ @node News @cindex news @unnumbered News +@anchor{Release 2_6_2} +@section Release 2.6.2 +@itemize +@item + Integration tests do not depend on non-portal @command{stat} command. +@end itemize + @anchor{Release 2_6_1} @section Release 2.6.1 @itemize @item - Tests do not depend on Python or Git. + Integration tests do not depend on Python or Git. @end itemize @anchor{Release 2_6_0} diff --git a/t/goredo-chmoding.t b/t/goredo-chmoding.t index 8790cd7fc534975d899221e1fcf86d9163f0a0d214b9f321cd16126e62faf005..357c44db77e53aa6bd06330f236a7c7811447a910f752066a4f2ea59fab47cba 100755 --- a/t/goredo-chmoding.t +++ b/t/goredo-chmoding.t @@ -8,7 +8,7 @@ echo echo ok > foo.do redo foo test_expect_success "foo is non executable" '[ ! -x foo ]' -inode0=`stat -f %i foo` +inode0=`perl -e '@s=stat "foo"; print "$s[1]\n"'` cat > foo.do < \$3 @@ -16,7 +16,7 @@ chmod +x \$3 EOF redo foo test_expect_success "foo is executable" '[ -x foo ]' -inode1=`stat -f %i foo` +inode1=`perl -e '@s=stat "foo"; print "$s[1]\n"'` test_expect_success "foo was not renamed" '[ $inode0 = $inode1 ]' test_done diff --git a/usage.go b/usage.go index bb260afeb235b33dc9eefb86a067bea6e0c5cbad4dd9ee390bfe8b131e80c022..721c8d3a84e9f970866d52940a7a9198d223657b3094ce8e5337f46aa515d092 100644 --- a/usage.go +++ b/usage.go @@ -22,7 +22,7 @@ "os" ) const ( - Version = "2.6.1" + Version = "2.6.2" Warranty = `Copyright (C) 2020-2024 Sergey Matveev This program is free software: you can redistribute it and/or modify