-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into documentation_polish
- Loading branch information
Showing
3 changed files
with
107 additions
and
11 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 |
---|---|---|
|
@@ -9,8 +9,10 @@ metpx-sr3c (3.24.07rc1) unstable; urgency=medium | |
* README revised to reflect that cpump is not resilient to failure. | ||
* fix #133 read some non-utf8 fields (instead of erroring.) | ||
* last tx/rx should be cumulative, reset less often. | ||
* fix SR_DEBUG_LOGS being broken by addition of context to api signature | ||
* tests working on RedHat 8 and 9 | ||
|
||
-- peter <[email protected]> Tue, 15 Jan 2024 08:26:22 -0500 | ||
-- Reid Sunderland <[email protected]> Mon, 29 Jul 2024 15:06:22 -0600 | ||
|
||
metpx-sr3c (3.23.11p3) unstable; urgency=medium | ||
|
||
|
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
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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
set -x | ||
|
||
which bash | ||
|
||
echo "#test 0 comment 000 shim test posting start" | ||
echo "#test 1 sha512 010 capturing stdout" | ||
bash -c 'echo "hoho" >> ./hoho' | ||
|
||
echo "#test 1 sha512 020 c program run." | ||
truncate --size=2 ./hoho | ||
|
||
echo "#test 1 sha512 030 python program run" | ||
/usr/bin/python3 pyiotest | ||
|
||
grep lovely pyiotest | ||
|
||
echo "#test 1 directory 040 make directory" | ||
mkdir sub_dir1 | ||
|
||
echo "#test 1 rename 050 rename directory" | ||
mv sub_dir1 sub_dir2 | ||
|
||
echo "#test 1 rmdir 060 remove directory" | ||
rmdir sub_dir2 | ||
|
||
|
||
echo "#test 1 sha512 070 cp command" | ||
cp libsr3shim.c ~/test/hoho_my_darling.txt | ||
|
||
echo "#test 1 sha512 080 touch command" | ||
touch hihi | ||
|
||
echo "#test 1 link 090 symlink command" | ||
ln -s hoho haha | ||
|
||
echo "#test 1 rename 100 moving a symlink" | ||
mv haha hihi | ||
|
||
echo "#test 1 rename 110 hardlink to a symlink" | ||
ln hihi hoohoo | ||
echo "#test 1 rename 120 moving a file. " | ||
mv ~/test/hoho_my_darling.txt ~/test/hoho2.log | ||
echo "#test 1 remove 130 removing a file. " | ||
rm hihi | ||
|
||
echo "#test 1 remove 140 removing a file." | ||
rm ~/test/hoho2.log | ||
|
||
echo "#test 1 directory 150 make second directory ." | ||
|
||
mkdir dirone | ||
if [ "${KNOWN_REDIRECTION_BUG}" ]; then | ||
echo "#test 1 sha512 160 cp to avoid stdout redirection in a subdir" | ||
cp hoho dirone/fileone | ||
else | ||
echo "#test 1 sha512 160 stdout redirection in a subdir" | ||
echo "fileone" >>dirone/fileone | ||
fi | ||
|
||
echo "#test 1 directory 170 make third directory." | ||
mkdir dirone/dirtwo | ||
|
||
if [ "${KNOWN_REDIRECTION_BUG}" ]; then | ||
echo "#test 1 sha512 180 cp to avoid stdout redirection in a subsubdir" | ||
cp hoho dirone/dirtwo/filetwo | ||
else | ||
echo "#test 1 sha512 180 stdout redirection in a subsubdir" | ||
echo "filetwo" >>dirone/dirtwo/filetwo | ||
fi | ||
|
||
echo "#test 1 rename 190 renaming subdirs should cause file rename events." | ||
mv dirone dirthree | ||
echo "#test 4 remove 200 removing a whole tree events." | ||
rm -rf dirthree | ||
echo "#test 2 remove 210 removing two files" | ||
rm hoho hoohoo | ||
echo "#test 0 comment 220 shim test posting end" | ||
echo "#test 0 comment 230 test to ensure previous completes" |