Raymond Toy pushed to branch issue-460-ci-fails-if-unit-tests-do at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • tests/float-x86.lisp
    ... ... @@ -5,6 +5,11 @@
    5 5
     
    
    6 6
     (in-package "FLOAT-X86-TESTS")
    
    7 7
     
    
    8
    +;; This tests the floating-point modes for x86.  This works only if we
    
    9
    +;; have the feature :sse2 but not :darwin since darwin has always used
    
    10
    +;; sse2 and not x87.  But see also how FLOATING-POINT-MODES is
    
    11
    +;; implemented in src/code/float-trap.lisp.
    
    12
    +#+(and sse2 (not darwin))
    
    8 13
     (define-test set-floating-point-modes
    
    9 14
       (let ((old-x87-modes (x86::x87-floating-point-modes))
    
    10 15
     	(old-sse2-modes (x86::sse2-floating-point-modes))