~ salmonella-environment-setup (master) dbaae4d9942387e1d5256cd23fbcd218b061e585


commit dbaae4d9942387e1d5256cd23fbcd218b061e585
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Thu Sep 30 19:26:15 2021 +0200
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Thu Sep 30 19:26:18 2021 +0200

    conf/common/chicken-4.scm: skip fuse
    
    Tests of fuse hang sometimes, blocking the whole salmonella execution,
    so skip it.
    
    This issue has been reported in https://bugs.call-cc.org/ticket/1775

diff --git a/conf/common/chicken-4.scm b/conf/common/chicken-4.scm
index c260fa1..7f4d7b9 100644
--- a/conf/common/chicken-4.scm
+++ b/conf/common/chicken-4.scm
@@ -17,7 +17,10 @@
 (chicken-bootstrap-prefix (ensure-environment-variable "CHICKEN_4_PREFIX"))
 
 (skip-eggs
- (append '(async-io pledge spatial-trees)
+ (append '(async-io
+           fuse  ;; https://bugs.call-cc.org/ticket/1775
+           pledge
+           spatial-trees)
          (skip-eggs)))
 
 
Trap