diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2018-11-07 13:49:51 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2018-11-07 15:28:05 +0100 |
| commit | e50e1e5fdf6aca3bf964376469316813349660d6 (patch) | |
| tree | e3de3aba04b96794cca453d6d24d6bc1cdc6ffdd | |
| parent | base: Register GC roots for build results. (diff) | |
| download | cuirass-e50e1e5fdf6aca3bf964376469316813349660d6.tar.gz | |
examples: random: Produce derivations that sometimes fail.
* examples/random-jobs.scm (random-derivation): Fail randomly.
| -rw-r--r-- | examples/random-jobs.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/random-jobs.scm b/examples/random-jobs.scm index 6521734..d623b25 100644 --- a/examples/random-jobs.scm +++ b/examples/random-jobs.scm @@ -39,6 +39,8 @@ (cdr (gettimeofday)))) (state (seed->random-state seed))) (sleep (pk 'sleeping (random 10 state))) + (when (zero? (random 4 state)) + (error "we're faillliiiiing!")) #$nonce (mkdir #$output)))))) |
