Skip to content

Commit 87df6f8

Browse files
committed
Reenable serialization tests. (Had a config error in the Clojure build that left out the binary serializer code.)
1 parent eaec7b6 commit 87df6f8

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

Clojure/Clojure.Tests/clojure/test_clojure/java_interop.clj

-4
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,6 @@
242242

243243
)
244244

245-
(compile-when (= dotnet-platform :framework)
246-
247245
(deftest test-proxy-non-serializable
248246
(testing "That proxy classes refuse serialization and deserialization"
249247
;; Serializable listed directly in interface list:
@@ -267,8 +265,6 @@
267265
.readObject)))
268266
(println "WARNING: Missing serialized proxy for Java" java-version "in test/clojure/test_clojure/java_interop.clj")))))
269267

270-
) ;; compile-when
271-
272268
(deftest test-bases
273269
(are [x] (nil? (bases x))
274270
System.Object ;; no super classes/interfaces ;;; java.lang.Object

Clojure/Clojure.Tests/clojure/test_clojure/serialization.clj

-5
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@
5656
(= (hash v) (hash rt))
5757
(= (.GetHashCode v) (.GetHashCode rt))))) ;;; .hashCode .hashCode
5858

59-
(compile-when (= :framework dotnet-version)
60-
6159
(deftest sequable-serialization
6260
(are [val] (roundtrip val)
6361
; lists and related
@@ -203,6 +201,3 @@
203201
(repeat 1)
204202
(iterate identity nil)
205203
(cycle [1])))
206-
207-
208-
) ;; compile-when

0 commit comments

Comments
 (0)