1
0
Fork 0
mirror of https://github.com/imjasonh/testscript-rs synced 2026-07-08 09:05:34 +00:00
testscript-rs/testdata/testscript_logging.txt
Jason Hall c39114f1a9 initial commit
Signed-off-by: Jason Hall <jason@chainguard.dev>
2025-09-26 18:41:14 -04:00

117 lines
2.3 KiB
Text

# non-verbose, non-continue
! testscript scripts
cmpenv stdout expect-stdout.txt
# verbose
! testscript -v scripts
cmpenv stdout expect-stdout-v.txt
# continue
! testscript -continue scripts
cmpenv stdout expect-stdout-c.txt
# verbose, continue
! testscript -v -continue scripts
cmpenv stdout expect-stdout-vc.txt
-- scripts/testscript.txt --
# comment 1
printargs section1
# comment 2
printargs section2
# comment 3
printargs section3
status 1
# comment 4
printargs section4
# comment 5
printargs section5
status 1
# comment 6
printargs section6
-- expect-stdout.txt --
** RUN testscript **
# comment 1 (0.000s)
# comment 2 (0.000s)
# comment 3 (0.000s)
> printargs section3
[stdout]
["printargs" "section3"]
> status 1
[exit status 1]
FAIL: $$WORK${/}scripts${/}testscript.txt:9: unexpected command failure
-- expect-stdout-v.txt --
** RUN testscript **
# comment 1 (0.000s)
> printargs section1
[stdout]
["printargs" "section1"]
# comment 2 (0.000s)
> printargs section2
[stdout]
["printargs" "section2"]
# comment 3 (0.000s)
> printargs section3
[stdout]
["printargs" "section3"]
> status 1
[exit status 1]
FAIL: $$WORK${/}scripts${/}testscript.txt:9: unexpected command failure
-- expect-stdout-c.txt --
** RUN testscript **
# comment 1 (0.000s)
# comment 2 (0.000s)
# comment 3 (0.000s)
> printargs section3
[stdout]
["printargs" "section3"]
> status 1
[exit status 1]
FAIL: $$WORK${/}scripts${/}testscript.txt:9: unexpected command failure
# comment 4 (0.000s)
# comment 5 (0.000s)
> printargs section5
[stdout]
["printargs" "section5"]
> status 1
[exit status 1]
FAIL: $$WORK${/}scripts${/}testscript.txt:16: unexpected command failure
# comment 6 (0.000s)
-- expect-stdout-vc.txt --
** RUN testscript **
# comment 1 (0.000s)
> printargs section1
[stdout]
["printargs" "section1"]
# comment 2 (0.000s)
> printargs section2
[stdout]
["printargs" "section2"]
# comment 3 (0.000s)
> printargs section3
[stdout]
["printargs" "section3"]
> status 1
[exit status 1]
FAIL: $$WORK${/}scripts${/}testscript.txt:9: unexpected command failure
# comment 4 (0.000s)
> printargs section4
[stdout]
["printargs" "section4"]
# comment 5 (0.000s)
> printargs section5
[stdout]
["printargs" "section5"]
> status 1
[exit status 1]
FAIL: $$WORK${/}scripts${/}testscript.txt:16: unexpected command failure
# comment 6 (0.000s)
> printargs section6
[stdout]
["printargs" "section6"]