~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to tools/xm-test/tests/destroy/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS =
 
2
 
 
3
TESTS = 01_destroy_basic_pos.test \
 
4
        02_destroy_noparm_neg.test \
 
5
        03_destroy_nonexist_neg.test \
 
6
        04_destroy_badparm_neg.test \
 
7
        05_destroy_byid_pos.test  \
 
8
        06_destroy_dom0_neg.test \
 
9
        07_destroy_stale_pos.test
 
10
 
 
11
XFAIL_TESTS = 
 
12
 
 
13
EXTRA_DIST = $(TESTS) $(XFAIL_TESTS)
 
14
 
 
15
TESTS_ENVIRONMENT=@TENV@
 
16
 
 
17
%.test: %.py
 
18
        cp $< $@
 
19
        chmod +x $@
 
20
 
 
21
clean-local: am_config_clean-local
 
22
 
 
23
am_config_clean-local:
 
24
        rm -f *test
 
25
        rm -f *log
 
26
        rm -f *~
 
27