1
0
Fork 0
mirror of https://github.com/imjasonh/testscript-rs synced 2026-07-17 06:02:04 +00:00

initial commit

Signed-off-by: Jason Hall <jason@chainguard.dev>
This commit is contained in:
Jason Hall 2025-09-26 18:41:14 -04:00
commit c39114f1a9
64 changed files with 8704 additions and 0 deletions

41
testdata/wait.txt vendored Normal file
View file

@ -0,0 +1,41 @@
[!exec:echo] skip
[!exec:false] skip
# TODO: the '\n' below doesn't work on Windows on Github Actions, which does
# have coreutils like "echo" installed. Perhaps they emit CRLF?
[windows] skip
exec echo foo
stdout foo
exec echo foo &
exec echo bar &
! exec false &
# Starting a background process should clear previous output.
! stdout foo
# Wait should set the output to the concatenated outputs of the background
# programs, in the order in which they were started.
wait
stdout 'foo\nbar'
exec echo bg1 &b1&
exec echo bg2 &b2&
exec echo bg3 &b3&
exec echo bg4 &b4&
wait b3
stdout bg3
wait b2
stdout bg2
wait
stdout 'bg1\nbg4'
# We should be able to start several background processes and wait for them
# individually.
# The end of the test should interrupt or kill any remaining background
# programs.
[!exec:sleep] skip
! exec sleep 86400 &