Raymond Toy pushed to branch master at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • bin/run-ansi-tests.sh
    ... ... @@ -31,20 +31,24 @@ done
    31 31
     # Shift out the options
    
    32 32
     shift $[$OPTIND - 1]
    
    33 33
     
    
    34
    +# Branch to use for tests
    
    35
    +#
    
    36
    +# Use branch cmucl-expected-failures in general since this branch
    
    37
    +# generally has the list of expected failures.  This is the branch to
    
    38
    +# use on cmucl master in general.
    
    39
    +BRANCH=cmucl-expected-failures
    
    40
    +
    
    34 41
     set -x
    
    35 42
     if [ -d ../ansi-test ]; then
    
    36 43
         # 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)
    
    44
    +    # changes.  Then pull any updates for the desired branch.
    
    45
    +    (cd ../ansi-test; git stash; git checkout $BRANCH; git pull --rebase)
    
    39 46
     else    
    
    40 47
         (cd ../; git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git)
    
    41 48
     fi
    
    42 49
     
    
    43 50
     cd ../ansi-test
    
    44
    -# Use branch cmucl-expected-failures in general since this branch
    
    45
    -# generally has the list of expected failures.  This is the branch to
    
    46
    -# use on cmucl master in general.
    
    47
    -git checkout cmucl-expected-failures
    
    51
    +git checkout $BRANCH
    
    48 52
     
    
    49 53
     make LISP="$LISP batch -noinit -nositeinit"
    
    50 54
     # There should be no unexpected successes or failures; check these separately