Raymond Toy pushed to branch issue-469-enable-cr-pow at cmucl / cmucl

Commits:

3 changed files:

Changes:

  • bin/run-unit-tests.sh
    ... ... @@ -42,9 +42,9 @@ done
    42 42
     shift $((OPTIND - 1))
    
    43 43
     
    
    44 44
     # Create the test directory needed by the issue.45 test.
    
    45
    -rm -rf test-tmp
    
    46
    -mkdir test-tmp
    
    47
    -ln -s /bin/ls test-tmp/ls-link
    
    45
    +#rm -rf test-tmp
    
    46
    +#mkdir test-tmp
    
    47
    +#ln -s /bin/ls test-tmp/ls-link
    
    48 48
     
    
    49 49
     # Set the timestamps on 64-bit-timestamp-2038.txt and
    
    50 50
     # 64-bit-timestamp-2106.txt, but only for OSes where we know this
    

  • tests/issues.lisp
    ... ... @@ -436,7 +436,7 @@
    436 436
     (define-test issue.45
    
    437 437
       (:tag :issues)
    
    438 438
       ;; This depends on run-tests to setup the test directory correctly!
    
    439
    -  (let* ((test-dir #p"test-tmp/")
    
    439
    +  (let* ((test-dir #p"tests/test-run-prog/")
    
    440 440
     	 (test-dir-name (namestring test-dir)))
    
    441 441
         (flet ((do-test (program)
    
    442 442
     	     (with-output-to-string (s)
    

  • tests/test-run-prog/ls-link
    1
    +#! /bin/sh
    
    2
    +exec /bin/ls "$@"