diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-01-28 10:24:18 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-01-29 11:15:59 +0000 |
commit | 437a86d927c187dbd2861c243540af7f16f76cd1 (patch) | |
tree | fd545400f4c6585b113bcf81d74766b82ec73ab7 /ocaml/Makefile.am | |
parent | d754f2d23c237767bd01f9d18d50a323a2d3e642 (diff) | |
download | libguestfs-437a86d927c187dbd2861c243540af7f16f76cd1.tar.gz libguestfs-437a86d927c187dbd2861c243540af7f16f76cd1.tar.xz libguestfs-437a86d927c187dbd2861c243540af7f16f76cd1.zip |
ocaml: Sort the tests.
(cherry picked from commit d33c70fd6417c71b8965a088355dcc9e2ade51f7)
Diffstat (limited to 'ocaml/Makefile.am')
-rw-r--r-- | ocaml/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am index 4c9471e1..50f26496 100644 --- a/ocaml/Makefile.am +++ b/ocaml/Makefile.am @@ -91,8 +91,9 @@ test_progs += \ endif TESTS = run-bindtests \ - $(patsubst %,%.bc,$(test_progs)) \ - $(patsubst %,%.opt,$(test_progs)) + $(sort \ + $(patsubst %,%.bc,$(test_progs)) \ + $(patsubst %,%.opt,$(test_progs))) noinst_DATA += \ bindtests.bc bindtests.opt \ |