]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/net/dbus-tests.el (dbus-test01-basic-types): Adapt test.
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 23 Sep 2020 17:57:03 +0000 (19:57 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 23 Sep 2020 17:57:03 +0000 (19:57 +0200)
test/lisp/net/dbus-tests.el

index 62ed3f2bfb4934296d3e55196c995cb34ec42ce8..2f20fcc1e67b58b798d0d2bf20a2373bdab78b2d 100644 (file)
    (dbus-check-arguments :session dbus--test-service :double "string")
    :type 'wrong-type-argument)
 
-  ;; `:unix-fd'.  Value range 0 .. 9.
+  ;; `:unix-fd'.  UNIX file descriptors are transfered out-of-band.
+  ;; We do not support this, and so we cannot do much testing here for
+  ;; `:unix-fd' being an argument (which is an index to the file
+  ;; descriptor in the array of file descriptors that accompany the
+  ;; D-Bus message).  Mainly testing, that values out of `:uint32'
+  ;; type range fail.
   (should (dbus-check-arguments :session dbus--test-service :unix-fd 0))
-  (should (dbus-check-arguments :session dbus--test-service :unix-fd 9))
-  (should-error
-   (dbus-check-arguments :session dbus--test-service :unix-fd 10)
-   :type 'dbus-error)
   (should-error
    (dbus-check-arguments :session dbus--test-service :unix-fd -1)
    :type 'args-out-of-range)