aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
1de4425&id2=f0de9a8b5d577221d3180c9e135d5cbda8a337c3'>diff)
2016-11-24Add system start-up files for "guix publish".Hartmut Goebel
* .gitignore: add etc/guix-publish.conf and /etc/guix-publish.service. * etc/guix-publish.conf.in: New file. * etc/guix-publish.service.in: New file. * nix/local.mk (etc/guix-%.service, etc/guix-%.conf): Generalized former build-rules for by using patterns. (nodist_systemdservice_DATA): Add etc/guix-publish.service, update comment. (nodist_upstartjob_DATA): Add etc/guix-publish.conf, update comment. * doc/guix.texi (Invoking guix publish): Add description for enabling "guix publish" on host distros using the new files.
downloadtracifyjs-45b6d23d3664382e1b0a77f614bc3744e1de4425.tar.gz
tracifyjs-45b6d23d3664382e1b0a77f614bc3744e1de4425.zip
suppress false positives in `ufuzz` (#4901)
-rw-r--r--test/ufuzz/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ufuzz/index.js b/test/ufuzz/index.js
index 13930dc0..55832547 100644
--- a/test/ufuzz/index.js
+++ b/test/ufuzz/index.js
@@ -1543,9 +1543,9 @@ function _createExpression(recurmax, noComma, stmtDepth, canThrow) {
var call = "typeof " + name + ' == "function" && --_calls_ >= 0 && ' + name + args;
if (canThrow) {
if (SUPPORT.optional_chaining && args[0] != "`" && rng(50) == 0) {
- call = name + "?." + args;
+ call = "--_calls_ >= 0 && " + name + "?." + args;
} else if (rng(20) == 0) {
- call = name + args;
+ call = "--_calls_ >= 0 && " + name + args;
}
}
return mayDefer(call);