diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2010-11-30 13:56:33 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-11-30 13:56:33 +0000 |
commit | 13af3835cdcfbf46c8072b7960d73ae9ca5deb4d (patch) | |
tree | 90766ea6bec08fbf35ea46f33104f8f18f70206e /ocaml/Makefile.am | |
parent | 61a0f7988447fe0911360f8dfc2962086967cc9a (diff) | |
download | libguestfs-13af3835cdcfbf46c8072b7960d73ae9ca5deb4d.tar.gz libguestfs-13af3835cdcfbf46c8072b7960d73ae9ca5deb4d.tar.xz libguestfs-13af3835cdcfbf46c8072b7960d73ae9ca5deb4d.zip |
ocaml: Combine tests together to reduce number of launches.
Combine launch, lvcreate and readdir tests together into a
single 'basic' test, so that we don't launch the appliance
so often when testing in this subdirectory.
Diffstat (limited to 'ocaml/Makefile.am')
-rw-r--r-- | ocaml/Makefile.am | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am index 21177e09..70081662 100644 --- a/ocaml/Makefile.am +++ b/ocaml/Makefile.am @@ -62,13 +62,15 @@ TESTS_ENVIRONMENT = \ $(VG) TESTS = run-bindtests \ - t/guestfs_005_load t/guestfs_010_launch t/guestfs_050_lvcreate \ - t/guestfs_060_readdir t/guestfs_070_threads \ + t/guestfs_005_load \ + t/guestfs_010_basic \ + t/guestfs_070_threads \ t/guestfs_080_optargs \ t/guestfs_400_progress noinst_DATA += bindtests \ - t/guestfs_005_load t/guestfs_010_launch t/guestfs_050_lvcreate \ - t/guestfs_060_readdir t/guestfs_070_threads \ + t/guestfs_005_load \ + t/guestfs_010_basic \ + t/guestfs_070_threads \ t/guestfs_080_optargs \ t/guestfs_400_progress @@ -80,15 +82,7 @@ t/guestfs_005_load: t/guestfs_005_load.cmx mlguestfs.cmxa mkdir -p t $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@ -t/guestfs_010_launch: t/guestfs_010_launch.cmx mlguestfs.cmxa - mkdir -p t - $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@ - -t/guestfs_050_lvcreate: t/guestfs_050_lvcreate.cmx mlguestfs.cmxa - mkdir -p t - $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@ - -t/guestfs_060_readdir: t/guestfs_060_readdir.cmx mlguestfs.cmxa +t/guestfs_010_basic: t/guestfs_010_basic.cmx mlguestfs.cmxa mkdir -p t $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@ |