summaryrefslogtreecommitdiffhomepage
path: root/systemtest/config
diff options
context:
space:
mode:
Diffstat (limited to 'systemtest/config')
-rw-r--r--systemtest/config/unix.exp19
1 files changed, 19 insertions, 0 deletions
diff --git a/systemtest/config/unix.exp b/systemtest/config/unix.exp
index e69de29..2de93b0 100644
--- a/systemtest/config/unix.exp
+++ b/systemtest/config/unix.exp
@@ -0,0 +1,19 @@
+proc runtest_exit_code { test_name command_line exit_code } {
+
+ spawn $command_line
+
+ expect eof
+
+ lassign [wait] pid spawnid os_error_flag value
+
+ if {$os_error_flag == 0} {
+ if {$value == $exit_code} {
+ pass "$test_name: Returned expected value $value"
+ } else {
+ fail "$test_name: Returned bad value $value, expected: $exit_code"
+ }
+ } else {
+ fail "$test_name: errno: $value"
+ }
+
+}