Raymond Toy pushed to branch issue-276-xoroshiro128starstar at cmucl / cmucl

Commits:

2 changed files:

Changes:

  • bin/run-ansi-tests.sh
    ... ... @@ -33,8 +33,9 @@ shift $[$OPTIND - 1]
    33 33
     
    
    34 34
     set -x
    
    35 35
     if [ -d ../ansi-test ]; then
    
    36
    -    # We already have clone; make sure it's clean by stashing any changes.
    
    37
    -    (cd ../ansi-test; git stash)
    
    36
    +    # We already have clone; make sure it's clean by stashing any
    
    37
    +    # changes.  Then pull any updates.
    
    38
    +    (cd ../ansi-test; git stash; git pull --rebase)
    
    38 39
     else    
    
    39 40
         (cd ../; git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git)
    
    40 41
     fi
    

  • src/code/rand-xoroshiro.lisp
    ... ... @@ -10,7 +10,7 @@
    10 10
     ;;;
    
    11 11
     ;;; **********************************************************************
    
    12 12
     ;;;
    
    13
    -;;; Support for the xoroshiro128+ random number generator by David
    
    13
    +;;; Support for the xoroshiro128** random number generator by David
    
    14 14
     ;;; Blackman and Sebastiano Vigna (vigna@acm.org). See
    
    15 15
     ;;; http://xoroshiro.di.unimi.it/.
    
    16 16