0.pre7.39:
[sbcl.git] / tests / side-effectful-pathnames.test.sh
index 89fe7ea..84ba3d7 100644 (file)
@@ -35,16 +35,14 @@ $SBCL <<EOF
     (format t "translation=~S~%" translation)
     (format t "expected-translation=~S~%" expected-translation)
     (assert (string= translation expected-translation)))
-  #| ; REMOVEME: These should be uncommented-out after flaky2_branch is merged.
   (format t "about to LOAD ~S~%" "TEST:$StudlyCapsStem")
   (load "TEST:$StudlyCapsStem")
   (assert (eq *loaded* :yes))
   (let ((compiled-file-name (namestring (compile-file "TEST:$StudlyCapsStem")))
-        (expected-file-name "$testdir/$testfilestem.x86f"))
+        (expected-file-name "$testdir/$testfilestem.fasl"))
     (format t "compiled-file-name=~S~%" compiled-file-name)
     (format t "expected-file-name=~S~%" expected-file-name)
     (assert (string= compiled-file-name expected-file-name)))
-  |#
   (sb-ext:quit :unix-status 52)
 EOF
 if [ $? != 52 ]; then