Submitted upstream: https://gitlab.com/weinholt/ac-d-bus/-/merge_requests/3 diff --git a/tests/test-signature.sps b/tests/test-signature.sps index 278401b..cc5574f 100755 --- a/tests/test-signature.sps +++ b/tests/test-signature.sps @@ -43,6 +43,7 @@ (format-type-signature '(message BYTE BYTE BYTE BYTE UINT32 UINT32 (ARRAY (STRUCT BYTE VARIANT))))) +(define fail-count (test-runner-fail-count (test-runner-get))) (test-end) -(exit (if (zero? (test-runner-fail-count (test-runner-get))) 0 1)) +(exit (if (zero? fail-count) 0 1)) diff --git a/tests/test-wire.sps b/tests/test-wire.sps index c3354bf..06ae73b 100755 --- a/tests/test-wire.sps +++ b/tests/test-wire.sps @@ -147,6 +147,7 @@ #x08 #x01 #x67 #x00 #x00 #x00 #x00 #x00 #x05 #x01 #x75 #x00 #x04 #x00 #x00 #x00 #x07 #x01 #x73 #x00 #x06 #x00 #x00 #x00 #x3A #x31 #x2E #x32 #x39 #x38 #x00 #x00))) +(define fail-count (test-runner-fail-count (test-runner-get))) (test-end) -(exit (if (zero? (test-runner-fail-count (test-runner-get))) 0 1)) +(exit (if (zero? fail-count) 0 1)) d7c0'>refslogtreecommitdiff
path: root/gnu/packages/digest.scm
AgeCommit message (Expand)Author
2021-01-03gnu: Add wyhash....* gnu/packages/digest.scm (wyhash): New variable. Signed-off-by: Leo Famulari <leo@famulari.name> Ryan Prior
2020-08-01gnu: Update xxhash to 0.8.0....* gnu/packages/digest.scm (xxhash): Update to 0.8.0. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Hendursaga
2020-06-29gnu: xxhash: Detect vector instructions at run time....* gnu/packages/digest.scm (xxhash)[arguments]: Set DISPATCH=1 make flag on x86. Tobias Geerinckx-Rice
2020-06-29gnu: xxhash: Update to 0.7.4....* gnu/packages/digest.scm (xxhash): Update to 0.7.4. Tobias Geerinckx-Rice
2020-06-29gnu: xxhash: Cross-compile....* gnu/packages/digest.scm (xxhash)[arguments]: Use CC-FOR-TARGET. Tobias Geerinckx-Rice
2020-03-11gnu: xxHash: Update to 0.7.3....* gnu/packages/digest.scm (xxhash): Update to 0.7.3. Leo Famulari
2019-12-23gnu: xxhash: Update to 0.7.2....* gnu/packages/digest.scm (xxhash): Update to 0.7.2. [arguments]: Run ‘make check’ in parallel. Tobias Geerinckx-Rice
2019-11-10gnu: Add 'file-name' where appropriate....* gnu/packages/admin.scm (detox, neofetch), gnu/packages/algebra.scm (python-fpylll), gnu/packages/bioinformatics.scm (tbsp, genrich), gnu/packages/crypto.scm (hpenc), gnu/packages/digest.scm (xxhash), gnu/packages/emacs-xyz.scm (emacs-tiny, emacs-ergoemacs-mode, emacs-make-it-so, emacs-poet-theme, emacs-deft, emacs-scribble-mode, emacs-helm-mu, emacs-unidecode, emacs-diff-hl, emacs-helm-exwm, emacs-gif-screencast, emacs-exec-path-from-shell), gnu/packages/engineering.scm (gpx), gnu/packages/freedesktop.scm (waylandpp), gnu/packages/golang.scm (go-github-com-sirupsen-logrus, go-github-com-shirou-gopsutil), gnu/packages/guile-xyz.scm (guile-studio, guile-picture-language, jupyter-guile-kernel), gnu/packages/image-viewers.scm (qview), gnu/packages/java-maths.scm (java-jblas), gnu/packages/llvm.scm (libclc), gnu/packages/logging.scm (spdlog), gnu/packages/ocaml.scm (ocaml-cstruct, ocaml-zarith), gnu/packages/terminals.scm (libtsm), gnu/packages/tigervnc.scm (tigervnc-client), gnu/packages/xdisorg.scm (xcalib, xbanish) [source]: Add file-name. Efraim Flashner