diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-05-27 20:40:06 +0200 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-05-31 13:48:13 +0200 |
| commit | a7c646b2d61b1e23eb44b608b843f2673acaa5bd (patch) | |
| tree | 8a5294947a1eb78b29ca03d48ba62fec07c2ecad /test/script/shell.et | |
| parent | bbf1fd0846fa51f74ef01399ab005d4d847becce (diff) | |
Options to select and exclude tests in config file
Diffstat (limited to 'test/script/shell.et')
| -rw-r--r-- | test/script/shell.et | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/script/shell.et b/test/script/shell.et index 282df37..00826c8 100644 --- a/test/script/shell.et +++ b/test/script/shell.et @@ -11,12 +11,12 @@ test ShellSpawn: guard (done == "load-done") flush - send "run-all" + send "run *" expect /run-test-result ShellTrue done/ expect /child-fail sh failed at: .*: false/ expect /child-fail sh exit code: 1/ expect /run-test-result ShellFalse failed/ - expect /run-all-done/ + expect /run-done/ def expect_next_stdout from p (expected): @@ -32,7 +32,7 @@ test ShellEcho: guard (done == "load-done") flush - send "run-all" + send "run *" expect_next_stdout from p: "a b c" @@ -57,7 +57,7 @@ test ShellEcho: with p: expect /run-test-result Echo done/ - expect /run-all-done/ + expect /run-done/ test ShellPipe: @@ -69,7 +69,7 @@ test ShellPipe: guard (done == "load-done") flush - send "run-all" + send "run *" expect_next_stdout from p: "bc" @@ -97,4 +97,4 @@ test ShellPipe: expect /run-test-result PipeRedirect done/ with p: - expect /run-all-done/ + expect /run-done/ |