Revision 90066780 Makefile.am

b/Makefile.am
106 106
	test/data \
107 107
	test/data/ovfdata \
108 108
	test/data/ovfdata/other \
109
	test/py \
109 110
	tools
110 111

  
111 112
ALL_APIDOC_HS_DIRS = \
......
814 815
	doc/examples/gnt-debug/README \
815 816
	doc/examples/gnt-debug/delay0.json \
816 817
	doc/examples/gnt-debug/delay50.json \
817
	test/lockperf.py \
818
	test/testutils.py \
819
	test/mocks.py \
818
	test/py/lockperf.py \
819
	test/py/testutils.py \
820
	test/py/mocks.py \
820 821
	$(dist_TESTS) \
821 822
	$(TEST_FILES) \
822 823
	man/footer.rst \
......
956 957
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
957 958
	test/data/vgs-missing-pvs-2.02.02.txt \
958 959
	test/data/vgs-missing-pvs-2.02.66.txt \
959
	test/ganeti-cli.test \
960
	test/gnt-cli.test \
961
	test/import-export_unittest-helper
960
	test/py/ganeti-cli.test \
961
	test/py/gnt-cli.test \
962
	test/py/import-export_unittest-helper
962 963

  
963 964
python_tests = \
964 965
	doc/examples/rapi_testutils.py \
965
	test/cfgupgrade_unittest.py \
966
	test/docs_unittest.py \
967
	test/ganeti.asyncnotifier_unittest.py \
968
	test/ganeti.backend_unittest-runasroot.py \
969
	test/ganeti.backend_unittest.py \
970
	test/ganeti.bdev_unittest.py \
971
	test/ganeti.cli_unittest.py \
972
	test/ganeti.client.gnt_cluster_unittest.py \
973
	test/ganeti.client.gnt_instance_unittest.py \
974
	test/ganeti.client.gnt_job_unittest.py \
975
	test/ganeti.cmdlib_unittest.py \
976
	test/ganeti.compat_unittest.py \
977
	test/ganeti.confd.client_unittest.py \
978
	test/ganeti.config_unittest.py \
979
	test/ganeti.constants_unittest.py \
980
	test/ganeti.daemon_unittest.py \
981
	test/ganeti.errors_unittest.py \
982
	test/ganeti.hooks_unittest.py \
983
	test/ganeti.ht_unittest.py \
984
	test/ganeti.http_unittest.py \
985
	test/ganeti.hypervisor.hv_chroot_unittest.py \
986
	test/ganeti.hypervisor.hv_fake_unittest.py \
987
	test/ganeti.hypervisor.hv_kvm_unittest.py \
988
	test/ganeti.hypervisor.hv_lxc_unittest.py \
989
	test/ganeti.hypervisor.hv_xen_unittest.py \
990
	test/ganeti.hypervisor_unittest.py \
991
	test/ganeti.impexpd_unittest.py \
992
	test/ganeti.jqueue_unittest.py \
993
	test/ganeti.jstore_unittest.py \
994
	test/ganeti.locking_unittest.py \
995
	test/ganeti.luxi_unittest.py \
996
	test/ganeti.masterd.iallocator_unittest.py \
997
	test/ganeti.masterd.instance_unittest.py \
998
	test/ganeti.mcpu_unittest.py \
999
	test/ganeti.netutils_unittest.py \
1000
	test/ganeti.objects_unittest.py \
1001
	test/ganeti.objectutils_unittest.py \
1002
	test/ganeti.opcodes_unittest.py \
1003
	test/ganeti.ovf_unittest.py \
1004
	test/ganeti.qlang_unittest.py \
1005
	test/ganeti.query_unittest.py \
1006
	test/ganeti.rapi.baserlib_unittest.py \
1007
	test/ganeti.rapi.client_unittest.py \
1008
	test/ganeti.rapi.resources_unittest.py \
1009
	test/ganeti.rapi.rlib2_unittest.py \
1010
	test/ganeti.rapi.testutils_unittest.py \
1011
	test/ganeti.rpc_unittest.py \
1012
	test/ganeti.runtime_unittest.py \
1013
	test/ganeti.serializer_unittest.py \
1014
	test/ganeti.server.rapi_unittest.py \
1015
	test/ganeti.ssconf_unittest.py \
1016
	test/ganeti.ssh_unittest.py \
1017
	test/ganeti.storage_unittest.py \
1018
	test/ganeti.tools.ensure_dirs_unittest.py \
1019
	test/ganeti.tools.node_daemon_setup_unittest.py \
1020
	test/ganeti.tools.prepare_node_join_unittest.py \
1021
	test/ganeti.uidpool_unittest.py \
1022
	test/ganeti.utils.algo_unittest.py \
1023
	test/ganeti.utils.filelock_unittest.py \
1024
	test/ganeti.utils.hash_unittest.py \
1025
	test/ganeti.utils.io_unittest-runasroot.py \
1026
	test/ganeti.utils.io_unittest.py \
1027
	test/ganeti.utils.log_unittest.py \
1028
	test/ganeti.utils.mlock_unittest.py \
1029
	test/ganeti.utils.nodesetup_unittest.py \
1030
	test/ganeti.utils.process_unittest.py \
1031
	test/ganeti.utils.retry_unittest.py \
1032
	test/ganeti.utils.text_unittest.py \
1033
	test/ganeti.utils.wrapper_unittest.py \
1034
	test/ganeti.utils.x509_unittest.py \
1035
	test/ganeti.utils_unittest.py \
1036
	test/ganeti.vcluster_unittest.py \
1037
	test/ganeti.workerpool_unittest.py \
1038
	test/pycurl_reset_unittest.py \
1039
	test/qa.qa_config_unittest.py \
1040
	test/tempfile_fork_unittest.py
966
	test/py/cfgupgrade_unittest.py \
967
	test/py/docs_unittest.py \
968
	test/py/ganeti.asyncnotifier_unittest.py \
969
	test/py/ganeti.backend_unittest-runasroot.py \
970
	test/py/ganeti.backend_unittest.py \
971
	test/py/ganeti.bdev_unittest.py \
972
	test/py/ganeti.cli_unittest.py \
973
	test/py/ganeti.client.gnt_cluster_unittest.py \
974
	test/py/ganeti.client.gnt_instance_unittest.py \
975
	test/py/ganeti.client.gnt_job_unittest.py \
976
	test/py/ganeti.cmdlib_unittest.py \
977
	test/py/ganeti.compat_unittest.py \
978
	test/py/ganeti.confd.client_unittest.py \
979
	test/py/ganeti.config_unittest.py \
980
	test/py/ganeti.constants_unittest.py \
981
	test/py/ganeti.daemon_unittest.py \
982
	test/py/ganeti.errors_unittest.py \
983
	test/py/ganeti.hooks_unittest.py \
984
	test/py/ganeti.ht_unittest.py \
985
	test/py/ganeti.http_unittest.py \
986
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
987
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
988
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
989
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
990
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
991
	test/py/ganeti.hypervisor_unittest.py \
992
	test/py/ganeti.impexpd_unittest.py \
993
	test/py/ganeti.jqueue_unittest.py \
994
	test/py/ganeti.jstore_unittest.py \
995
	test/py/ganeti.locking_unittest.py \
996
	test/py/ganeti.luxi_unittest.py \
997
	test/py/ganeti.masterd.iallocator_unittest.py \
998
	test/py/ganeti.masterd.instance_unittest.py \
999
	test/py/ganeti.mcpu_unittest.py \
1000
	test/py/ganeti.netutils_unittest.py \
1001
	test/py/ganeti.objects_unittest.py \
1002
	test/py/ganeti.objectutils_unittest.py \
1003
	test/py/ganeti.opcodes_unittest.py \
1004
	test/py/ganeti.ovf_unittest.py \
1005
	test/py/ganeti.qlang_unittest.py \
1006
	test/py/ganeti.query_unittest.py \
1007
	test/py/ganeti.rapi.baserlib_unittest.py \
1008
	test/py/ganeti.rapi.client_unittest.py \
1009
	test/py/ganeti.rapi.resources_unittest.py \
1010
	test/py/ganeti.rapi.rlib2_unittest.py \
1011
	test/py/ganeti.rapi.testutils_unittest.py \
1012
	test/py/ganeti.rpc_unittest.py \
1013
	test/py/ganeti.runtime_unittest.py \
1014
	test/py/ganeti.serializer_unittest.py \
1015
	test/py/ganeti.server.rapi_unittest.py \
1016
	test/py/ganeti.ssconf_unittest.py \
1017
	test/py/ganeti.ssh_unittest.py \
1018
	test/py/ganeti.storage_unittest.py \
1019
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1020
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1021
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1022
	test/py/ganeti.uidpool_unittest.py \
1023
	test/py/ganeti.utils.algo_unittest.py \
1024
	test/py/ganeti.utils.filelock_unittest.py \
1025
	test/py/ganeti.utils.hash_unittest.py \
1026
	test/py/ganeti.utils.io_unittest-runasroot.py \
1027
	test/py/ganeti.utils.io_unittest.py \
1028
	test/py/ganeti.utils.log_unittest.py \
1029
	test/py/ganeti.utils.mlock_unittest.py \
1030
	test/py/ganeti.utils.nodesetup_unittest.py \
1031
	test/py/ganeti.utils.process_unittest.py \
1032
	test/py/ganeti.utils.retry_unittest.py \
1033
	test/py/ganeti.utils.text_unittest.py \
1034
	test/py/ganeti.utils.wrapper_unittest.py \
1035
	test/py/ganeti.utils.x509_unittest.py \
1036
	test/py/ganeti.utils_unittest.py \
1037
	test/py/ganeti.vcluster_unittest.py \
1038
	test/py/ganeti.workerpool_unittest.py \
1039
	test/py/pycurl_reset_unittest.py \
1040
	test/py/qa.qa_config_unittest.py \
1041
	test/py/tempfile_fork_unittest.py
1041 1042

  
1042 1043
haskell_tests = htest/test
1043 1044

  
1044 1045
dist_TESTS = \
1045
	test/check-cert-expired_unittest.bash \
1046
	test/daemon-util_unittest.bash \
1047
	test/ganeti-cleaner_unittest.bash \
1048
	test/import-export_unittest.bash \
1049
	test/cli-test.bash \
1050
	test/bash_completion.bash \
1046
	test/py/check-cert-expired_unittest.bash \
1047
	test/py/daemon-util_unittest.bash \
1048
	test/py/ganeti-cleaner_unittest.bash \
1049
	test/py/import-export_unittest.bash \
1050
	test/py/cli-test.bash \
1051
	test/py/bash_completion.bash \
1051 1052
	$(python_tests)
1052 1053

  
1053 1054
nodist_TESTS =
......
1099 1100

  
1100 1101
srclink_files = \
1101 1102
	man/footer.rst \
1102
	test/check-cert-expired_unittest.bash \
1103
	test/daemon-util_unittest.bash \
1104
	test/ganeti-cleaner_unittest.bash \
1105
	test/import-export_unittest.bash \
1106
	test/cli-test.bash \
1107
	test/bash_completion.bash \
1103
	test/py/check-cert-expired_unittest.bash \
1104
	test/py/daemon-util_unittest.bash \
1105
	test/py/ganeti-cleaner_unittest.bash \
1106
	test/py/import-export_unittest.bash \
1107
	test/py/cli-test.bash \
1108
	test/py/bash_completion.bash \
1108 1109
	htest/offline-test.sh \
1109 1110
	htest/cli-tests-defs.sh \
1110 1111
	$(all_python_code) \
......
1145 1146
	$(PYTHON_BOOTSTRAP) \
1146 1147
	qa
1147 1148

  
1148
test/daemon-util_unittest.bash: daemons/daemon-util
1149
test/py/daemon-util_unittest.bash: daemons/daemon-util
1149 1150

  
1150
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1151
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1151 1152

  
1152
test/bash_completion.bash: doc/examples/bash_completion-debug
1153
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1153 1154

  
1154 1155
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1155 1156
	sed -f $(REPLACE_VARS_SED) < $< > $@

Also available in: Unified diff