diff options
-rw-r--r-- | tests/gpgme/wrap.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/gpgme/wrap.scm b/tests/gpgme/wrap.scm index 4f3ae7d4d..e8f2b1fa3 100644 --- a/tests/gpgme/wrap.scm +++ b/tests/gpgme/wrap.scm @@ -56,5 +56,8 @@ (log "Importing extra key...") (call-check `(,@GPG --yes --import ,(in-srcdir "pubkey-1.asc")))))) -(log "Running" (car executable)) -(exit (run executable)) +(if (file-exists? (car executable)) + (begin + (log "Running" (car executable)) + (exit (run executable))) + (skip (car executable) "is not built")) |