X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=regressions%2FMakefile.am;h=3279f95c0bff2bf38be9bae706e97ec938b17914;hb=31053d2027d3db9423edcfc70a725b6ca3a7c84c;hp=fd56a6d0a49b98ee537ae9d4c2daee7626009608;hpb=dcd8742578a57e0871d6db4797014bbfd854a57b;p=libguestfs.git diff --git a/regressions/Makefile.am b/regressions/Makefile.am index fd56a6d..3279f95 100644 --- a/regressions/Makefile.am +++ b/regressions/Makefile.am @@ -21,8 +21,34 @@ # # See also capitests/ -EXTRA_DIST = \ - test-cleanup.sh \ +TESTS = \ + rhbz503169c10.sh \ + rhbz503169c13.sh \ + test-cancellation-download-librarycancels.sh \ + test-cancellation-upload-daemoncancels.sh \ + test-noexec-stack.pl \ + test-qemudie-killsub.sh \ + test-qemudie-midcommand.sh \ + test-qemudie-synch.sh \ + test-read_file.sh \ + test-remote.sh \ + test-reopen.sh + +SKIPPED_TESTS = \ test-bootbootboot.sh -TESTS = test-bootbootboot.sh +FAILING_TESTS = \ + test-qemudie-launchfail.sh + +random_val := $(shell awk 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null) + +TESTS_ENVIRONMENT = \ + MALLOC_PERTURB_=$(random_val) \ + LD_LIBRARY_PATH=$(top_builddir)/src/.libs \ + LIBGUESTFS_PATH=$(top_builddir)/appliance \ + NOEXEC_CHECK="$(top_builddir)/src/.libs/libguestfs.so $(top_builddir)/daemon/guestfsd" + +EXTRA_DIST = \ + $(FAILING_TESTS) \ + $(SKIPPED_TESTS) \ + $(TESTS)