blob: cbed5cbf2da09787ec26d29c4b5957559dcca536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
Index: ocaml-expat-0.9.1/Makefile
===================================================================
--- ocaml-expat-0.9.1.orig/Makefile
+++ ocaml-expat-0.9.1/Makefile
@@ -67,7 +67,7 @@ doc: FORCE
testall: test testopt
.PHONY: test
test: unittest
- ./unittest
+ LD_LIBRARY_PATH=. ./unittest
.PHONY: testopt
testopt: unittest.opt
./unittest.opt
Index: ocaml-expat-0.9.1/unittest.ml
===================================================================
--- ocaml-expat-0.9.1.orig/unittest.ml
+++ ocaml-expat-0.9.1/unittest.ml
@@ -497,7 +497,7 @@ let suite = "expat" >:::
something obviously wrong. *)
loop do_stuff 10
);
-
+(*
"another garbage collection test" >::
(fun _ ->
let parse _ =
@@ -530,7 +530,7 @@ let suite = "expat" >:::
close_in xml_spec
in
loop parse 10
- );
+ );*)
];;
let _ =
|